accounts-editor-eit-pane: Ellipsize the account row label

This will help the pane fit in narrower widths.
This commit is contained in:
Adrien Plazas 2020-04-27 10:43:45 +02:00 committed by Julian Sparber
parent bab1759af0
commit 84c94463cd

View file

@ -376,7 +376,9 @@ private class Accounts.MailboxRow : AccountRow<EditorEditPane,Gtk.Label> {
public MailboxRow(Geary.AccountInformation account,
Geary.RFC822.MailboxAddress mailbox) {
base(account, "", new Gtk.Label(""));
var label = new Gtk.Label("");
label.ellipsize = Pango.EllipsizeMode.END;
base(account, "", label);
this.mailbox = mailbox;
enable_drag();