Fix fullscreen toggle shortcut

Remove the "Meta" modifier so that the shortcut works on Windows.
This commit is contained in:
David Rowe 2014-06-19 11:08:21 -07:00
parent 45a640d4b2
commit 2dbf8d7daf

View file

@ -251,7 +251,7 @@ Menu::Menu() :
addCheckableActionToQMenuAndActionHash(viewMenu,
MenuOption::Fullscreen,
Qt::CTRL | Qt::META | Qt::Key_F,
Qt::CTRL | Qt::Key_F,
false,
appInstance,
SLOT(setFullscreen(bool)));