From cefb0bcde595ad7d5bf6c80aefbb0121e6443508 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Mon, 25 Dec 2017 11:05:28 +0200 Subject: [PATCH] dont count latte plasmoid as expanded --this solves making the dock background fully shown with no transparency at all when a task in the plasmoid needed attention. --- containment/package/contents/ui/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containment/package/contents/ui/main.qml b/containment/package/contents/ui/main.qml index 866477e1b..98fb00e2c 100644 --- a/containment/package/contents/ui/main.qml +++ b/containment/package/contents/ui/main.qml @@ -82,7 +82,7 @@ DragDrop.DropArea { && !(hasExpandedApplet && zoomFactor===1 && plasmoid.configuration.panelSize===100) readonly property bool hasExpandedApplet: plasmoid.applets.some(function (item) { - return (item.status >= PlasmaCore.Types.NeedsAttentionStatus + return (item.status >= PlasmaCore.Types.NeedsAttentionStatus && item.pluginName !== root.plasmoidName && item.status !== PlasmaCore.Types.HiddenStatus); })