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/windowinfo | |
| 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/windowinfo')
| -rw-r--r-- | modules/windowinfo/Details.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/windowinfo/Details.qml b/modules/windowinfo/Details.qml index 7b9f9b8..da25f61 100644 --- a/modules/windowinfo/Details.qml +++ b/modules/windowinfo/Details.qml @@ -14,7 +14,7 @@ ColumnLayout { Label { Layout.topMargin: Appearance.padding.large * 2 - text: Hyprland.activeClient?.title ?? "No active client" + text: Hyprland.activeClient?.title ?? qsTr("No active client") wrapMode: Text.WrapAtWordBoundaryOrAnywhere font.pointSize: Appearance.font.size.large @@ -22,7 +22,7 @@ ColumnLayout { } Label { - text: Hyprland.activeClient?.wmClass ?? "No active client" + text: Hyprland.activeClient?.wmClass ?? qsTr("No active client") color: Colours.palette.m3tertiary font.pointSize: Appearance.font.size.larger @@ -132,7 +132,7 @@ ColumnLayout { Layout.rightMargin: Appearance.padding.large Layout.fillWidth: true - spacing: Appearance.spacing.normal + spacing: Appearance.spacing.smaller MaterialIcon { id: icon |