From 1b3c9e38eacc9d35b288ff40b1916769a868ee43 Mon Sep 17 00:00:00 2001 From: nowrep Date: Sat, 28 Dec 2013 17:12:24 +0100 Subject: [PATCH] [TabPreviews] Don't show tab preview when moving tab --- src/lib/webview/tabbar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/webview/tabbar.cpp b/src/lib/webview/tabbar.cpp index 3df9be9f7..514945bee 100644 --- a/src/lib/webview/tabbar.cpp +++ b/src/lib/webview/tabbar.cpp @@ -494,7 +494,7 @@ void TabBar::showTabPreview(bool delayed) { if (delayed) { int index = tabAt(mapFromGlobal(QCursor::pos())); - if (index == -1) { + if (index == -1 || QApplication::mouseButtons()) { return; }