From 7fde11af5ff7c11c41471c268a799d05187cbb3b Mon Sep 17 00:00:00 2001 From: The Dax Date: Thu, 26 Sep 2013 19:38:15 -0400 Subject: [PATCH] Don't show resolution info when entering/exiting fullscreen. It's not really necessary. --- Windows/WndMainWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Windows/WndMainWindow.cpp b/Windows/WndMainWindow.cpp index a5d62b5bcb..a21d8a5a63 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, true); + ResizeDisplay(); 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, true); + ResizeDisplay(); ShowOwnedPopups(hwndMain, FALSE); UpdateScreenScale(); }