Change summary
crates/gpui/src/platform/windows/display.rs | 27 ++++++++++------------
1 file changed, 12 insertions(+), 15 deletions(-)
Detailed changes
@@ -121,21 +121,18 @@ impl WindowsDisplay {
}
pub(crate) fn frequency(&self) -> Option<u32> {
- available_monitors()
- .get(self.display_id.0 as usize)
- .and_then(|hmonitor| get_monitor_info(*hmonitor).ok())
- .and_then(|info| {
- let mut devmode = DEVMODEW::default();
- unsafe {
- EnumDisplaySettingsW(
- PCWSTR(info.szDevice.as_ptr()),
- ENUM_CURRENT_SETTINGS,
- &mut devmode,
- )
- }
- .as_bool()
- .then(|| devmode.dmDisplayFrequency)
- })
+ get_monitor_info(self.handle).ok().and_then(|info| {
+ let mut devmode = DEVMODEW::default();
+ unsafe {
+ EnumDisplaySettingsW(
+ PCWSTR(info.szDevice.as_ptr()),
+ ENUM_CURRENT_SETTINGS,
+ &mut devmode,
+ )
+ }
+ .as_bool()
+ .then(|| devmode.dmDisplayFrequency)
+ })
}
}