diff options
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell/ActiveWindowDisplay.qml')
-rw-r--r-- | accounts/gkleen@sif/shell/quickshell/ActiveWindowDisplay.qml | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/ActiveWindowDisplay.qml b/accounts/gkleen@sif/shell/quickshell/ActiveWindowDisplay.qml index 883f9001..dcc23279 100644 --- a/accounts/gkleen@sif/shell/quickshell/ActiveWindowDisplay.qml +++ b/accounts/gkleen@sif/shell/quickshell/ActiveWindowDisplay.qml | |||
@@ -149,16 +149,22 @@ Item { | |||
149 | hoverEnabled: true | 149 | hoverEnabled: true |
150 | enabled: true | 150 | enabled: true |
151 | 151 | ||
152 | anchors.centerIn: parent | 152 | anchors.fill: parent |
153 | 153 | ||
154 | Text { | 154 | Item { |
155 | id: widgetTooltipText | 155 | anchors.fill: parent |
156 | 156 | ||
157 | font.pointSize: 10 | 157 | Text { |
158 | font.family: "Fira Mono" | 158 | id: widgetTooltipText |
159 | color: "white" | 159 | |
160 | anchors.centerIn: parent | ||
160 | 161 | ||
161 | text: JSON.stringify(Object.assign({}, activeWindowDisplay.activeWindow), null, 2) | 162 | font.pointSize: 10 |
163 | font.family: "Fira Mono" | ||
164 | color: "white" | ||
165 | |||
166 | text: JSON.stringify(Object.assign({}, activeWindowDisplay.activeWindow), null, 2) | ||
167 | } | ||
162 | } | 168 | } |
163 | } | 169 | } |
164 | } | 170 | } |