diff options
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell/Clock.qml')
-rw-r--r-- | accounts/gkleen@sif/shell/quickshell/Clock.qml | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/Clock.qml b/accounts/gkleen@sif/shell/quickshell/Clock.qml index a1872ff5..edce57e3 100644 --- a/accounts/gkleen@sif/shell/quickshell/Clock.qml +++ b/accounts/gkleen@sif/shell/quickshell/Clock.qml | |||
@@ -162,17 +162,25 @@ Item { | |||
162 | Layout.column: 1 | 162 | Layout.column: 1 |
163 | Layout.fillWidth: true | 163 | Layout.fillWidth: true |
164 | 164 | ||
165 | delegate: Text { | 165 | delegate: WrapperItem { |
166 | required property string shortName | 166 | required property string shortName |
167 | 167 | ||
168 | font.pointSize: 10 | 168 | width: dowLabel.contentWidth + 6 |
169 | font.family: "Fira Mono" | ||
170 | 169 | ||
171 | text: shortName | 170 | Text { |
172 | color: "#ffcc66" | 171 | id: dowLabel |
173 | 172 | ||
174 | horizontalAlignment: Text.AlignRight | 173 | anchors.fill: parent |
175 | verticalAlignment: Text.AlignVCenter | 174 | |
175 | font.pointSize: 10 | ||
176 | font.family: "Fira Sans" | ||
177 | |||
178 | text: parent.shortName | ||
179 | color: "#ffcc66" | ||
180 | |||
181 | horizontalAlignment: Text.AlignHCenter | ||
182 | verticalAlignment: Text.AlignVCenter | ||
183 | } | ||
176 | } | 184 | } |
177 | } | 185 | } |
178 | 186 | ||