diff options
Diffstat (limited to 'modules/drawers/Drawers.qml')
| -rw-r--r-- | modules/drawers/Drawers.qml | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/modules/drawers/Drawers.qml b/modules/drawers/Drawers.qml index d8f242b..937409a 100644 --- a/modules/drawers/Drawers.qml +++ b/modules/drawers/Drawers.qml @@ -70,14 +70,24 @@ Variants { source: background } - Panels { - id: panels + PersistentProperties { + id: visibilities - screen: scope.modelData + property bool launcher + property bool osd + property bool notifs + property bool session } Interactions { - screen: scope.modelData + visibilities: visibilities + + Panels { + id: panels + + screen: scope.modelData + visibilities: visibilities + } } } } |