summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-06-22 19:07:27 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-06-22 19:07:27 +0200
commitd8d7bcdad3f6884270f10a5e0a76073d777837a1 (patch)
tree42d969389e7e6d955d4199d39fb295057beafe18 /src
parentActivate window externally triggered (diff)
downloadrekonq-d8d7bcdad3f6884270f10a5e0a76073d777837a1.tar.xz
Calling KTabBar::mouseMoveEvent() ASAP, to let tab switch occur... ASAP!
Diffstat (limited to 'src')
-rw-r--r--src/tabbar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tabbar.cpp b/src/tabbar.cpp
index f3584eed..f56bfda9 100644
--- a/src/tabbar.cpp
+++ b/src/tabbar.cpp
@@ -206,6 +206,8 @@ void TabBar::mouseMoveEvent(QMouseEvent *event)
QTimer::singleShot(200, view->addTabButton(), SLOT(hide()));
}
+ KTabBar::mouseMoveEvent(event);
+
if (ReKonfig::alwaysShowTabPreviews())
{
//Find the tab under the mouse
@@ -243,8 +245,6 @@ void TabBar::mouseMoveEvent(QMouseEvent *event)
m_currentTabPreviewIndex = -1;
}
}
-
- KTabBar::mouseMoveEvent(event);
}