client: Fix account editor width on small screens
This commit is contained in:
parent
61b699498d
commit
62ed7654a7
2 changed files with 2 additions and 0 deletions
|
|
@ -276,6 +276,7 @@ private class Accounts.AccountListRow : AccountRow<EditorListPane,Gtk.Grid> {
|
|||
this.value.add(this.unavailable_icon);
|
||||
this.value.add(this.service_label);
|
||||
|
||||
this.service_label.set_ellipsize(Pango.EllipsizeMode.END);
|
||||
this.service_label.show();
|
||||
|
||||
this.account.changed.connect(on_account_changed);
|
||||
|
|
|
|||
|
|
@ -217,6 +217,7 @@ internal class Accounts.LabelledEditorRow<PaneType,V> : EditorRow<PaneType> {
|
|||
this.label.halign = Gtk.Align.START;
|
||||
this.label.valign = Gtk.Align.CENTER;
|
||||
this.label.set_text(label);
|
||||
this.label.set_ellipsize(Pango.EllipsizeMode.END);
|
||||
this.label.show();
|
||||
this.layout.add(this.label);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue