summaryrefslogtreecommitdiff
path: root/src/tabbar.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-10-25 11:09:12 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-10-25 11:09:12 +0100
commitb389f01eee0c5bd3deba212853124bc8010a6c8c (patch)
tree4e2a00c676dfb8ee24440c88bffadd4dbe78b677 /src/tabbar.cpp
parentcloneTab patch (diff)
downloadrekonq-b389f01eee0c5bd3deba212853124bc8010a6c8c.tar.xz
Just close tab on middle mouse click
Diffstat (limited to 'src/tabbar.cpp')
-rw-r--r--src/tabbar.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/tabbar.cpp b/src/tabbar.cpp
index bde1e63e..ac050191 100644
--- a/src/tabbar.cpp
+++ b/src/tabbar.cpp
@@ -268,6 +268,19 @@ void TabBar::leaveEvent(QEvent *event)
KTabBar::leaveEvent(event);
}
+void TabBar::mousePressEvent(QMouseEvent *event)
+{
+ // just close tab on middle mouse click
+ if (event->button() == Qt::MidButton)
+ {
+ int index = tabAt(event->pos());
+ emit closeTab(index);
+ return;
+ }
+
+ KTabBar::mousePressEvent(event);
+}
+
void TabBar::updateNewTabButton()
{