From 6f1dd9da6a9310129d7d15253364a97542ac847d Mon Sep 17 00:00:00 2001 From: Moody Liu Date: Sun, 10 Mar 2024 22:50:13 +0000 Subject: [PATCH] always show panel during edit mode --- package/contents/ui/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/contents/ui/main.qml b/package/contents/ui/main.qml index 7e78bd6..ad8443a 100644 --- a/package/contents/ui/main.qml +++ b/package/contents/ui/main.qml @@ -30,7 +30,7 @@ PlasmoidItem { property int animatedMinimumWidth: minimumWidth property int animatedMinimumHeight: minimumHeight property int screen: plasmoid.containment.screen - readonly property bool inEditMode: latteInEditMode || plasmoid.userConfiguring + readonly property bool inEditMode: latteInEditMode || plasmoid.userConfiguring || plasmoid.containment.corona.editMode readonly property bool mustHide: { if (visibility === AppletDecoration.Types.AlwaysVisible || inEditMode) return false;