[TabPreviews] Don't show tab preview when moving tab

remotes/origin/falkon
nowrep 12 years ago
parent d52b0e2cea
commit 1b3c9e38ea
  1. 2
      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;
}

Loading…
Cancel
Save