diff options
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell/shell.qml')
-rw-r--r-- | accounts/gkleen@sif/shell/quickshell/shell.qml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/shell.qml b/accounts/gkleen@sif/shell/quickshell/shell.qml index 2abd1fef..4934cd4d 100644 --- a/accounts/gkleen@sif/shell/quickshell/shell.qml +++ b/accounts/gkleen@sif/shell/quickshell/shell.qml | |||
@@ -8,8 +8,16 @@ ShellRoot { | |||
8 | Variants { | 8 | Variants { |
9 | model: Quickshell.screens | 9 | model: Quickshell.screens |
10 | 10 | ||
11 | delegate: Bar { | 11 | delegate: Scope { |
12 | modelData: item | 12 | id: screenScope |
13 | |||
14 | required property var modelData | ||
15 | |||
16 | Bar { | ||
17 | id: bar | ||
18 | |||
19 | screen: screenScope.modelData | ||
20 | } | ||
13 | } | 21 | } |
14 | } | 22 | } |
15 | } | 23 | } |