summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-02-02 03:40:43 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-02-02 03:40:43 +0100
commit4dd21afd4c34db9f9588a32ea5d84d1f2ce47220 (patch)
tree4405af2c5a762ccba80716b592ec4d167cfc4fe0 /src
parentThis should fix last wrong encoded urls (diff)
downloadrekonq-4dd21afd4c34db9f9588a32ea5d84d1f2ce47220.tar.xz
Fix bug 219752
Johannes Zellner patch. Thanks :) BUG: 219752
Diffstat (limited to 'src')
-rw-r--r--src/tabbar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabbar.cpp b/src/tabbar.cpp
index 7326d7af..460a2464 100644
--- a/src/tabbar.cpp
+++ b/src/tabbar.cpp
@@ -199,7 +199,7 @@ void TabBar::mouseMoveEvent(QMouseEvent *event)
}
//if found and not the current tab then show tab preview
- if (tab != -1 && tab != currentIndex() && m_currentTabPreview != tab)
+ if (tab != -1 && tab != currentIndex() && m_currentTabPreview != tab && event->buttons() == Qt::NoButton)
{
showTabPreview(tab);
m_currentTabPreview = tab;