From f833121032d0f8309ca5e0ce25d0b0c43b9ba3c5 Mon Sep 17 00:00:00 2001 From: Bradley Austin Davis Date: Mon, 22 Jun 2015 19:55:52 -0700 Subject: [PATCH] Fixing the initial missing UI on retina displays, again --- interface/src/Application.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index b0d91f8619..a2b5cc8b00 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -1063,9 +1063,7 @@ void Application::resizeGL() { auto offscreenUi = DependencyManager::get(); auto canvasSize = _glWidget->size(); - if (canvasSize != offscreenUi->getWindow()->size()) { - offscreenUi->resize(canvasSize); - } + offscreenUi->resize(canvasSize); _glWidget->makeCurrent(); }