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:
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user