mirror of
https://github.com/KDE/latte-dock.git
synced 2025-03-21 10:50:30 +03:00
fix #928,pass propagated events to applets
-- the mousearea used for the parabolic effect can block some important signals to go to underneath applets. We make sure that such signals are not accepted, and as such are forwarded to underlying applets.
This commit is contained in:
parent
04bae04d56
commit
a3ebd17070
@ -685,11 +685,14 @@ Item {
|
||||
container.activateAppletForNeutralAreas(mouse);
|
||||
|
||||
pressed = true;
|
||||
// mouse.accepted = false;
|
||||
//! this is needed for some applets is order to be activated/deactivated correctly
|
||||
//! such case is the "Application Menu". (bug #928)
|
||||
mouse.accepted = false;
|
||||
}
|
||||
|
||||
onReleased: {
|
||||
pressed = false;
|
||||
mouse.accepted = false;
|
||||
}
|
||||
|
||||
onWheel: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user