From df79ee19c31a6c8202b2e4a19e88fdcde9a66c25 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Mon, 29 Jun 2015 22:29:16 -0700 Subject: [PATCH] Qt: Fix fullscreen shortcut on Windows --- src/platform/qt/Window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/qt/Window.cpp b/src/platform/qt/Window.cpp index b00803735..f58003ba7 100644 --- a/src/platform/qt/Window.cpp +++ b/src/platform/qt/Window.cpp @@ -857,7 +857,7 @@ void Window::setupMenu(QMenuBar* menubar) { } QKeySequence fullscreenKeys; #ifdef Q_OS_WIN - fullscreenKeys = QKeySequence("Alt+Enter"); + fullscreenKeys = QKeySequence("Alt+Return"); #else fullscreenKeys = QKeySequence("Ctrl+F"); #endif