From 7f2dceb95c5812207c87f4b61d5a90e0306603d6 Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Wed, 15 Mar 2017 14:59:22 +0100 Subject: [PATCH] manage mouse events when out of the window mouseareas must support event grabbing when the mouse is out of the window too BUG:377545 --- shell/panelview.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/panelview.cpp b/shell/panelview.cpp index 05300328c..70d74cbf8 100644 --- a/shell/panelview.cpp +++ b/shell/panelview.cpp @@ -761,8 +761,8 @@ bool PanelView::event(QEvent *e) return true; } } else { - // discard event if current mouse position is outside the panel - return true; + // default handling if current mouse position is outside the panel + return ContainmentView::event(e); } break; }