diff options
| author | Amstel <shinamusuteru.rdc@gmail.com> | 2025-06-11 21:20:01 +0800 |
|---|---|---|
| committer | Amstel <shinamusuteru.rdc@gmail.com> | 2025-06-11 21:20:01 +0800 |
| commit | 9ec489a49e17773939aacf13dd2897b1955965a9 (patch) | |
| tree | c6903ac92163a9b8038b1fad022ad4e6936c797e /config/BarConfig.qml | |
| parent | Merge pull request #43 from Amstel-DEV/main (diff) | |
| download | caelestia-shell-9ec489a49e17773939aacf13dd2897b1955965a9.tar.gz caelestia-shell-9ec489a49e17773939aacf13dd2897b1955965a9.tar.bz2 caelestia-shell-9ec489a49e17773939aacf13dd2897b1955965a9.zip | |
Battery Default Width Fix
Battery Width Property Being set to:
- property int batteryWidth: 200
is too cramped for the details to display properly.
Battery Width Adjusted to 250
- property int batteryWidth: 250
now this will enable the contents to show properly while hovering in battery section.
Diffstat (limited to 'config/BarConfig.qml')
| -rw-r--r-- | config/BarConfig.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/BarConfig.qml b/config/BarConfig.qml index 2b5e7d5..21f9314 100644 --- a/config/BarConfig.qml +++ b/config/BarConfig.qml @@ -13,7 +13,7 @@ Singleton { property int innerHeight: 30 property int windowPreviewSize: 400 property int trayMenuWidth: 300 - property int batteryWidth: 200 + property int batteryWidth: 250 } component Workspaces: QtObject { |