From abe606b2a628bcb9633be0df7132fdd39b8e6c12 Mon Sep 17 00:00:00 2001 From: tomcw Date: Sat, 25 Feb 2023 10:58:53 +0000 Subject: [PATCH] Alt+Enter: fix regression, as this key combo should default to toggling full screen (#1188) --- source/Windows/Win32Frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Windows/Win32Frame.cpp b/source/Windows/Win32Frame.cpp index ec8a4c58..ce92112d 100644 --- a/source/Windows/Win32Frame.cpp +++ b/source/Windows/Win32Frame.cpp @@ -23,7 +23,7 @@ Win32Frame::Win32Frame() g_hLogoBitmap = (HBITMAP)0; g_hDeviceBitmap = (HBITMAP)0; g_hDeviceDC = (HDC)0; - g_bAltEnter_ToggleFullScreen = false; + g_bAltEnter_ToggleFullScreen = true; // Alt+Enter defaults to toggling full screen g_bIsFullScreen = false; g_bShowingCursor = true; g_bLastCursorInAppleViewport = false;