diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 17 | ||||
| -rw-r--r-- | src/dolphinmainwindow.h | 4 |
2 files changed, 9 insertions, 12 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 077005c0f..f623d5eba 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -266,15 +266,12 @@ void DolphinMainWindow::slotSelectionChanged(const KFileItemList& selection) emit selectionChanged(selection); } -void DolphinMainWindow::slotWheelMoved(int wheeldelta) +void DolphinMainWindow::slotWheelMoved(int wheelDelta) { - if (wheeldelta > 0) - { - //Non-negative, wheel is going forwards, so the tab goes backwards (focuses left) - activatePrevTab(); - } else - { - activateNextTab(); + if (wheelDelta > 0) { + activatePrevTab(); + } else { + activateNextTab(); } } @@ -908,9 +905,9 @@ void DolphinMainWindow::init() this, SLOT(openNewTab())); connect(m_tabBar, SIGNAL(testCanDecode(const QDragMoveEvent*, bool&)), this, SLOT(slotTestCanDecode(const QDragMoveEvent*, bool&))); - connect(m_tabBar, SIGNAL(wheelDelta(int)), + connect(m_tabBar, SIGNAL(wheelDelta(int)), this, SLOT(slotWheelMoved(int))); - + m_tabBar->blockSignals(true); // signals get unblocked after at least 2 tabs are open QWidget* centralWidget = new QWidget(this); diff --git a/src/dolphinmainwindow.h b/src/dolphinmainwindow.h index f9eb5cced..885610b9f 100644 --- a/src/dolphinmainwindow.h +++ b/src/dolphinmainwindow.h @@ -287,7 +287,7 @@ private slots: * we look to see if it's negative (backwards) or positive (forwards). * Enables changing of tabs via mouse wheel. */ - void slotWheelMoved(int wheeldelta); + void slotWheelMoved(int wheelDelta); /** Emits the signal requestItemInfo(). */ void slotRequestItemInfo(const KFileItem&); @@ -349,7 +349,7 @@ private slots: */ void closeTab(int index); - + /** * Opens a context menu for the tab with the index \a index * on the position \a pos. |
