From 801901a65210cf3556ed9f0818e3f694483be24b Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 28 Jan 2019 11:58:00 +0100 Subject: Fix T57069: macOS window contents scaling bug. The cause of this is unclear, but delaying querying the native pixel size appears to help in the one case I could reproduce. --- intern/ghost/intern/GHOST_WindowCocoa.mm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'intern/ghost') diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm index 79d2f304e60..8b9660463dd 100644 --- a/intern/ghost/intern/GHOST_WindowCocoa.mm +++ b/intern/ghost/intern/GHOST_WindowCocoa.mm @@ -571,11 +571,6 @@ GHOST_WindowCocoa::GHOST_WindowCocoa( updateDrawingContext(); activateDrawingContext(); - if (m_systemCocoa->m_nativePixel) { - NSRect backingBounds = [m_openGLView convertRectToBacking:[m_openGLView bounds]]; - m_nativePixelSize = (float)backingBounds.size.width / (float)rect.size.width; - } - setTitle(title); m_tablet.Active = GHOST_kTabletModeNone; @@ -599,6 +594,8 @@ GHOST_WindowCocoa::GHOST_WindowCocoa( if (state == GHOST_kWindowStateFullScreen) setState(GHOST_kWindowStateFullScreen); + setNativePixelSize(); + [pool drain]; } -- cgit v1.2.3