1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

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

This commit is contained in:
nowrep 2013-12-28 17:12:24 +01:00
parent d52b0e2cea
commit 1b3c9e38ea

View File

@ -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;
}