1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 05:25:41 -05:00

dankbar: fix hiding widgets that should not be enabled

This commit is contained in:
bbedward
2025-11-13 12:55:52 -05:00
parent 5d2f5557e5
commit b62ba69060

View File

@@ -15,6 +15,9 @@ Item {
if (widget.warning && widget.warning.includes("Plugin is disabled")) {
return false
}
if (widget.enabled === false) {
return false
}
return true
})
}