fix playbar title sizing
This commit is contained in:
parent
265363db54
commit
a249a00120
1 changed files with 6 additions and 1 deletions
|
@ -46,9 +46,10 @@ template $AudreyUiPlaybar: Adw.Bin {
|
||||||
]
|
]
|
||||||
|
|
||||||
xalign: 0;
|
xalign: 0;
|
||||||
halign: start;
|
|
||||||
label: bind $song_title(template.song) as <string>;
|
label: bind $song_title(template.song) as <string>;
|
||||||
ellipsize: end;
|
ellipsize: end;
|
||||||
|
max-width-chars: 1;
|
||||||
|
hexpand: true;
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
|
@ -59,6 +60,8 @@ template $AudreyUiPlaybar: Adw.Bin {
|
||||||
xalign: 0;
|
xalign: 0;
|
||||||
label: bind $song_artist(template.song) as <string>;
|
label: bind $song_artist(template.song) as <string>;
|
||||||
ellipsize: end;
|
ellipsize: end;
|
||||||
|
max-width-chars: 1;
|
||||||
|
hexpand: true;
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
|
@ -69,6 +72,8 @@ template $AudreyUiPlaybar: Adw.Bin {
|
||||||
xalign: 0;
|
xalign: 0;
|
||||||
label: bind $song_album(template.song) as <string>;
|
label: bind $song_album(template.song) as <string>;
|
||||||
ellipsize: end;
|
ellipsize: end;
|
||||||
|
max-width-chars: 1;
|
||||||
|
hexpand: true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue