diff options
| author | Lukáš Tinkl <[email protected]> | 2014-11-04 00:00:04 +0100 |
|---|---|---|
| committer | Lukáš Tinkl <[email protected]> | 2014-11-04 00:00:04 +0100 |
| commit | a069d24d4b9d56d9faf8834ccebfb393451ba258 (patch) | |
| tree | 7c05dabcbac6985484cf6219a566f87235e2efdc /src/dolphinmainwindow.cpp | |
| parent | 037d5db85bb0bd798d40c557d424c5c9b87457a8 (diff) | |
fix default tab prev/next shortcuts
take into accound the whole list, not just the first shortcut
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index df04cee69..eece5b878 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1118,12 +1118,10 @@ void DolphinMainWindow::setupActions() KStandardAction::preferences(this, SLOT(editSettings()), actionCollection()); // not in menu actions - QList<QKeySequence> nextTabKeys; - nextTabKeys.append(KStandardShortcut::tabNext().first()); //TODO: is this correct + QList<QKeySequence> nextTabKeys = KStandardShortcut::tabNext(); nextTabKeys.append(QKeySequence(Qt::CTRL | Qt::Key_Tab)); - QList<QKeySequence> prevTabKeys; - prevTabKeys.append(KStandardShortcut::tabPrev().first()); //TODO: is this correct + QList<QKeySequence> prevTabKeys = KStandardShortcut::tabPrev(); prevTabKeys.append(QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_Tab)); QAction* activateNextTab = actionCollection()->addAction("activate_next_tab"); |
