diff options
author | Tarek Soliman | 2012-02-04 19:53:16 -0600 |
---|---|---|
committer | Tarek Soliman | 2012-02-04 19:53:57 -0600 |
commit | da4b03139d83dd08f39b7eda7579395436feda7d (patch) | |
tree | 2452a0a11334d9ef7fd247d15864985c8b2e91d7 /gui | |
parent | e8ef680400cf1d7e406bdf8793019a624f4f1d08 (diff) | |
download | scummvm-rg350-da4b03139d83dd08f39b7eda7579395436feda7d.tar.gz scummvm-rg350-da4b03139d83dd08f39b7eda7579395436feda7d.tar.bz2 scummvm-rg350-da4b03139d83dd08f39b7eda7579395436feda7d.zip |
KEYMAPPER: Added Toggle FullScreen action
Diffstat (limited to 'gui')
-rw-r--r-- | gui/gui-manager.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gui/gui-manager.cpp b/gui/gui-manager.cpp index 5b8c03c672..9fa41798d5 100644 --- a/gui/gui-manager.cpp +++ b/gui/gui-manager.cpp @@ -124,6 +124,9 @@ void GuiManager::initKeymap() { act = new Action(guiMap, "REMP", _("Remap keys"), kKeyRemapActionType); act->addKeyEvent(KeyState(KEYCODE_F8, ASCII_F8, 0)); + act = new Action(guiMap, "FULS", _("Toggle FullScreen"), kKeyRemapActionType); + act->addKeyEvent(KeyState(KEYCODE_RETURN, ASCII_RETURN, KBD_ALT)); + mapper->addGlobalKeymap(guiMap); } |