1
0
mirror of https://github.com/KDE/latte-dock.git synced 2024-12-24 17:33:50 +03:00

hidden applets pass on parabolieffect messages

This commit is contained in:
Michail Vourlakos 2021-02-14 17:13:06 +02:00
parent da6478fc8e
commit 6550112525

View File

@ -873,7 +873,8 @@ Item {
//! parabolic effect messages properly to surrounding plasma applets
active: isParabolicEnabled || isThinTooltipEnabled
readonly property bool isParabolicEnabled: appletItem.parabolic.isEnabled && !(lockZoom || isHidden)
//! in hidden state applets must pass on parabolic messages to neighbours
readonly property bool isParabolicEnabled: (appletItem.parabolic.isEnabled && !lockZoom) || isHidden
readonly property bool isThinTooltipEnabled: appletItem.thinTooltip.isEnabled && !isHidden
sourceComponent: ParabolicArea{}