diff options
Diffstat (limited to 'src/actionmanager.cpp')
-rw-r--r-- | src/actionmanager.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/actionmanager.cpp b/src/actionmanager.cpp index ce01bc8d6..8f0f3db2c 100644 --- a/src/actionmanager.cpp +++ b/src/actionmanager.cpp @@ -1169,4 +1169,24 @@ impHandler0(prevShortcutsTab) return false; } +impHandler0(nextCommandsTab) +{ + if (spellShortcutWindow) + { + spellShortcutWindow->nextTab(); + return true; + } + return false; +} + +impHandler0(prevCommandsTab) +{ + if (spellShortcutWindow) + { + spellShortcutWindow->prevTab(); + return true; + } + return false; +} + } // namespace ActionManager |