From 2414a918bb2dc9fd86490aa1231b0a2cf0510f52 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Wed, 11 Sep 2019 21:55:29 +0300 Subject: [PATCH] do not overlay applets when icon found !visible --many applets are changing layouts and during that process the main icon becomes invisile, in that case the latte overlaied icon should also been disabled and let applet paint itself accordingly FIXED-IN:0.9.3 --- containment/package/contents/ui/applet/communicator/Engine.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containment/package/contents/ui/applet/communicator/Engine.qml b/containment/package/contents/ui/applet/communicator/Engine.qml index 615698fc7..cc1ded307 100644 --- a/containment/package/contents/ui/applet/communicator/Engine.qml +++ b/containment/package/contents/ui/applet/communicator/Engine.qml @@ -38,7 +38,7 @@ Item{ //! BEGIN OF PROPERTIES //this is used for folderView and icon widgets to fake their visual icons - readonly property bool canShowOverlaiedLatteIcon: appletIconItem + readonly property bool canShowOverlaiedLatteIcon: appletIconItem && appletIconItem.visible readonly property bool overlayLatteIconIsActive: canShowOverlaiedLatteIcon && latteIconOverlayEnabled property Item appletRootItem: appletDiscoveredRootItem ? appletDiscoveredRootItem : appletDefaultRootItem