From c78d9f4978862c0778ef3354039d344983da6009 Mon Sep 17 00:00:00 2001 From: nowrep Date: Thu, 15 Dec 2011 17:03:50 +0100 Subject: [PATCH] [Fix:] Fixed tab animation when moving mouse ot of tabbar - calling QTabBar::mouseReleaseEvent --- src/webview/tabbar.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/webview/tabbar.cpp b/src/webview/tabbar.cpp index 8d85da63f..1d150c5dd 100644 --- a/src/webview/tabbar.cpp +++ b/src/webview/tabbar.cpp @@ -322,6 +322,7 @@ void TabBar::mouseDoubleClickEvent(QMouseEvent* event) void TabBar::mouseReleaseEvent(QMouseEvent* event) { if (!rect().contains(event->pos())) { + QTabBar::mouseReleaseEvent(event); return; }