summaryrefslogtreecommitdiff
path: root/src/gui/gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r--src/gui/gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp
index b695b669b..6a7727c07 100644
--- a/src/gui/gui.cpp
+++ b/src/gui/gui.cpp
@@ -439,10 +439,10 @@ bool Gui::handleKeyInput()
// tabbing is enable check for tab press and
// change focus.
if (!eventConsumed && keyInput.getActionId()
- == static_cast<int>(Input::KEY_GUI_TAB)
+ == static_cast<int>(InputAction::GUI_TAB)
&& keyInput.getType() == KeyInput::PRESSED)
{
- if (inputManager.isActionActive(Input::KEY_GUI_MOD))
+ if (inputManager.isActionActive(InputAction::GUI_MOD))
mFocusHandler->tabPrevious();
else
mFocusHandler->tabNext();