[geary: 4/9] accounts-editor-eit-pane: Ellipsize the account row label
- From: Michael Gratton <mjog src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [geary: 4/9] accounts-editor-eit-pane: Ellipsize the account row label
- Date: Thu, 7 Jan 2021 21:54:59 +0000 (UTC)
commit 84c94463cd806ac5dbb1692ef3c04107b5a5f12f
Author: Adrien Plazas <kekun plazas laposte net>
Date: Mon Apr 27 10:43:45 2020 +0200
accounts-editor-eit-pane: Ellipsize the account row label
This will help the pane fit in narrower widths.
src/client/accounts/accounts-editor-edit-pane.vala | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/src/client/accounts/accounts-editor-edit-pane.vala
b/src/client/accounts/accounts-editor-edit-pane.vala
index 2722db6e3..5b9443336 100644
--- a/src/client/accounts/accounts-editor-edit-pane.vala
+++ b/src/client/accounts/accounts-editor-edit-pane.vala
@@ -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();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]