We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbd55a3 commit 19639a3Copy full SHA for 19639a3
package/contents/ui/main.qml
@@ -202,7 +202,7 @@ PlasmoidItem {
202
onFloatignessChanged: {
203
updateMasks()
204
// fixes the mask getting stuck a couple of pixels off for some reason
205
- if (main.floatigness === 1 || main.floatigness === 0) {
+ if ((main.floatigness === 1 || main.floatigness === 0) && !editMode) {
206
Utils.delay(10, () => {
207
208
activatePlasmoidCycle()
@@ -1773,6 +1773,8 @@ PlasmoidItem {
1773
Plasmoid.status = Qt.binding(function () {return (editMode || !hideWidget) ? PlasmaCore.Types.ActiveStatus : PlasmaCore.Types.HiddenStatus})
1774
}
1775
1776
+ onHideWidgetChanged: bindPlasmoidStatus()
1777
+
1778
Timer {
1779
id: bindPlasmoidStatusTimer
1780
interval: 600
0 commit comments