Use a consistent default for window scaling (#38527)

(And make it 2, because most macs have retina screens)

Release Notes:

- N/A
This commit is contained in:
Conrad Irwin
2025-09-22 08:56:15 -06:00
committed by GitHub
parent b97843ea02
commit dccbb47fbc

View File

@@ -1566,7 +1566,7 @@ fn get_scale_factor(native_window: id) -> f32 {
let factor = unsafe {
let screen: id = msg_send![native_window, screen];
if screen.is_null() {
return 1.0;
return 2.0;
}
NSScreen::backingScaleFactor(screen) as f32
};