From a249a00120d4b27c06d0e38cf1942e51fd90164e Mon Sep 17 00:00:00 2001 From: Erica Z Date: Mon, 25 Nov 2024 23:04:28 +0100 Subject: [PATCH] fix playbar title sizing --- resources/playbar.blp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/resources/playbar.blp b/resources/playbar.blp index 4ac2ab1..24b5380 100644 --- a/resources/playbar.blp +++ b/resources/playbar.blp @@ -46,9 +46,10 @@ template $AudreyUiPlaybar: Adw.Bin { ] xalign: 0; - halign: start; label: bind $song_title(template.song) as ; ellipsize: end; + max-width-chars: 1; + hexpand: true; } Label { @@ -59,6 +60,8 @@ template $AudreyUiPlaybar: Adw.Bin { xalign: 0; label: bind $song_artist(template.song) as ; ellipsize: end; + max-width-chars: 1; + hexpand: true; } Label { @@ -69,6 +72,8 @@ template $AudreyUiPlaybar: Adw.Bin { xalign: 0; label: bind $song_album(template.song) as ; ellipsize: end; + max-width-chars: 1; + hexpand: true; } } }