diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-26 21:35:15 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-26 21:35:15 +1000 |
| commit | 11c8e5c7eb9b5f6e522946c9f44e842fec41ba7b (patch) | |
| tree | f4e715dada3ebaeef457779bbcf744bd7c629077 /modules/bar/components/StatusIcons.qml | |
| parent | icons: use variable axes (diff) | |
| download | caelestia-shell-11c8e5c7eb9b5f6e522946c9f44e842fec41ba7b.tar.gz caelestia-shell-11c8e5c7eb9b5f6e522946c9f44e842fec41ba7b.tar.bz2 caelestia-shell-11c8e5c7eb9b5f6e522946c9f44e842fec41ba7b.zip | |
icons: some fixes for previous axes change
Mostly spacing fixes
Also qsTr windowinfo class and title when none
Diffstat (limited to 'modules/bar/components/StatusIcons.qml')
| -rw-r--r-- | modules/bar/components/StatusIcons.qml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/bar/components/StatusIcons.qml b/modules/bar/components/StatusIcons.qml index c260cc6..540f041 100644 --- a/modules/bar/components/StatusIcons.qml +++ b/modules/bar/components/StatusIcons.qml @@ -35,7 +35,7 @@ Item { anchors.horizontalCenter: network.horizontalCenter anchors.top: network.bottom - anchors.topMargin: Appearance.spacing.small + anchors.topMargin: Appearance.spacing.smaller / 2 animate: true text: Bluetooth.powered ? "bluetooth" : "bluetooth_disabled" @@ -47,7 +47,9 @@ Item { anchors.horizontalCenter: bluetooth.horizontalCenter anchors.top: bluetooth.bottom - anchors.topMargin: Appearance.spacing.small + anchors.topMargin: Appearance.spacing.smaller / 2 + + spacing: Appearance.spacing.smaller / 2 Repeater { id: repeater @@ -72,7 +74,7 @@ Item { anchors.horizontalCenter: devices.horizontalCenter anchors.top: repeater.count > 0 ? devices.bottom : bluetooth.bottom - anchors.topMargin: Appearance.spacing.small + anchors.topMargin: Appearance.spacing.smaller / 2 animate: true text: { |