summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.co.uk>2013-06-26 15:28:26 +0200
committerXavier Claessens <xavier.claessens@collabora.co.uk>2013-06-26 15:28:26 +0200
commit76a11c06dae40c16d70c506b808bec51d5a1cd13 (patch)
tree3276c78b7f3e11316eb31cf45a865559b36a64c0
parent6bace22f3ffb9695870267e2a59858b3feeaa83e (diff)
AccountsDialog: Ellipsize account dispaly name
This fix gnome-shell crash if the name is too big, because it makes the window huge. https://bugzilla.gnome.org/show_bug.cgi?id=702095
-rw-r--r--src/empathy-accounts-dialog.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c
index f0a2db9a..abb4e0ca 100644
--- a/src/empathy-accounts-dialog.c
+++ b/src/empathy-accounts-dialog.c
@@ -2384,6 +2384,7 @@ accounts_dialog_build_ui (EmpathyAccountsDialog *dialog)
/* first row */
priv->label_name = gtk_label_new (NULL);
+ gtk_label_set_ellipsize (GTK_LABEL (priv->label_name), PANGO_ELLIPSIZE_END);
gtk_grid_attach (GTK_GRID (grid), priv->label_name, 1, 0, 1, 1);
/* second row */