From f1ed85b481afa9a47ce7b4a65bdcb246c03c11bb Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Wed, 27 Jan 2021 20:34:48 +0200 Subject: [PATCH] fix items shadow opacity calcs through abilities --- containment/package/contents/ui/abilities/MyView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containment/package/contents/ui/abilities/MyView.qml b/containment/package/contents/ui/abilities/MyView.qml index 5fb8299f0..852938cb8 100644 --- a/containment/package/contents/ui/abilities/MyView.qml +++ b/containment/package/contents/ui/abilities/MyView.qml @@ -51,7 +51,7 @@ Ability.MyViewPrivate { itemShadow.isEnabled: plasmoid.configuration.appletShadowsEnabled itemShadow.size: itemShadow.isEnabled ? (0.5*metrics.iconSize) * (plasmoid.configuration.shadowSize/100) : 0 - itemShadow.shadowColor: "#" + myView.decimalToHex(itemShadowOpacity) + myView.itemShadowOpacity + itemShadow.shadowColor: "#" + myView.decimalToHex(myView.itemShadowOpacity) + myView.itemShadowCurrentColor itemShadow.shadowSolidColor: "#" + myView.itemShadowCurrentColor }