diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-22 00:21:57 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-07-22 00:21:57 +1000 |
| commit | 6616cb13272132302f0b58573e98b4564e105e12 (patch) | |
| tree | 94e84b563534a3114a957b16bd8df7bf157ee871 /modules/background/DesktopClock.qml | |
| parent | feat: add a simple desktop clock (#238) (diff) | |
| download | caelestia-shell-6616cb13272132302f0b58573e98b4564e105e12.tar.gz caelestia-shell-6616cb13272132302f0b58573e98b4564e105e12.tar.bz2 caelestia-shell-6616cb13272132302f0b58573e98b4564e105e12.zip | |
background: some fixes for desktop clock
Loader + use implicit width/height + move
Diffstat (limited to '')
| -rw-r--r-- | modules/background/DesktopClock.qml (renamed from widgets/DesktopClock.qml) | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/widgets/DesktopClock.qml b/modules/background/DesktopClock.qml index 30e4fc4..380e65a 100644 --- a/widgets/DesktopClock.qml +++ b/modules/background/DesktopClock.qml @@ -1,20 +1,18 @@ -import QtQuick -import QtQuick.Controls -import qs.config -import qs.services import qs.widgets +import qs.services +import qs.config +import QtQuick Item { - id: clockRoot - width: timeText.implicitWidth + Appearance.padding.large * 2 - height: timeText.implicitHeight + Appearance.padding.large * 2 - + implicitWidth: timeText.implicitWidth + Appearance.padding.large * 2 + implicitHeight: timeText.implicitHeight + Appearance.padding.large * 2 StyledText { id: timeText + anchors.centerIn: parent + text: Time.format("hh:mm:ss") font.pointSize: Appearance.font.size.extraLarge font.bold: true - text: Time.format("hh:mm:ss"); } } |