From 24d587c991738ba809222daa59bf7c9f8efe59a1 Mon Sep 17 00:00:00 2001 From: The Dax Date: Thu, 26 Sep 2013 17:49:37 -0400 Subject: [PATCH] Adjust a few calls. Display fullscreen/normal resolution mode info only one time. --- Windows/WndMainWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Windows/WndMainWindow.cpp b/Windows/WndMainWindow.cpp index cdeba4f4d5..a5d62b5bcb 100644 --- a/Windows/WndMainWindow.cpp +++ b/Windows/WndMainWindow.cpp @@ -276,7 +276,7 @@ namespace MainWindow // Reset full screen indicator. g_Config.bFullScreen = false; CorrectCursor(); - ResizeDisplay(true); + ResizeDisplay(true, true); ShowOwnedPopups(hwndMain, TRUE); W32Util::MakeTopMost(hwndMain, g_Config.bTopMost); } @@ -304,7 +304,7 @@ namespace MainWindow // Set full screen indicator. g_Config.bFullScreen = true; CorrectCursor(); - ResizeDisplay(true); + ResizeDisplay(true, true); ShowOwnedPopups(hwndMain, FALSE); UpdateScreenScale(); }