accounts-editor-eit-pane: Ellipsize the account row label
This will help the pane fit in narrower widths.
This commit is contained in:
parent
bab1759af0
commit
84c94463cd
1 changed files with 3 additions and 1 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue