From b48686229ad883154570b837f1eabd26d06b2b76 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Sat, 16 Jan 2021 23:02:09 +0200 Subject: [PATCH] enable parabolic area for hidden applets --this way parabolic effect messages are forwarded properly to surrounding applets --- containment/package/contents/ui/applet/AppletItem.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/containment/package/contents/ui/applet/AppletItem.qml b/containment/package/contents/ui/applet/AppletItem.qml index 8fd2fdf88..1bed36b15 100644 --- a/containment/package/contents/ui/applet/AppletItem.qml +++ b/containment/package/contents/ui/applet/AppletItem.qml @@ -910,8 +910,9 @@ Item { id: parabolicAreaLoader width: root.isHorizontal ? appletItem.width : appletItem.metrics.mask.thickness.zoomedForItems height: root.isHorizontal ? appletItem.metrics.mask.thickness.zoomedForItems : appletItem.height - - active: parabolicEffectIsSupported && appletItem.parabolic.isEnabled && !lockZoom + //! must be enabled even for applets that are hidden in order to forward + //! parabolic effect messages properly to surrounding plasma applets + active: appletItem.parabolic.isEnabled && (!lockZoom || isHidden) sourceComponent: ParabolicArea{}