There was an error while loading. Please reload this page.
1 parent b3d671a commit 6268e4dCopy full SHA for 6268e4d
1 file changed
package/contents/ui/components/CustomBackground.qml
@@ -13,6 +13,7 @@ import "../"
13
Rectangle {
14
id: rect
15
property var target
16
+ property int targetIsHidden: target.applet?.plasmoid?.status === PlasmaCore.Types.HiddenStatus
17
property int targetIndex
18
property var main
19
property bool animatePropertyChanges: Plasmoid.configuration.animatePropertyChanges
@@ -929,6 +930,16 @@ Rectangle {
929
930
});
931
}
932
933
+ // PlasmaCore.Types.HiddenStatus != !visible
934
+ onTargetIsHiddenChanged: {
935
+ if (!targetIsHidden) {
936
+ Qt.callLater(function () {
937
+ main.updateUnified();
938
+ updateMaskDebounced();
939
+ });
940
+ }
941
942
+
943
onBlurBehindChanged: {
944
if (isWidget) {
945
main.widgetsDoingBlur[maskIndex] = blurBehind;
0 commit comments