diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-02-02 03:40:43 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-02-02 03:40:43 +0100 |
commit | 4dd21afd4c34db9f9588a32ea5d84d1f2ce47220 (patch) | |
tree | 4405af2c5a762ccba80716b592ec4d167cfc4fe0 /src/tabbar.cpp | |
parent | This should fix last wrong encoded urls (diff) | |
download | rekonq-4dd21afd4c34db9f9588a32ea5d84d1f2ce47220.tar.xz |
Fix bug 219752
Johannes Zellner patch.
Thanks :)
BUG: 219752
Diffstat (limited to 'src/tabbar.cpp')
-rw-r--r-- | src/tabbar.cpp | 2 |
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; |