aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-01-06 22:03:58 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-02-15 17:23:06 +0800
commitbe6cefc64d3893274dd907dcc094d6209b54352a (patch)
tree6626758334773bcef3665e0de4b91b7b699d47e6
parentd0dd004dda7783348d186cee7a4b344cdb6f5a6c (diff)
downloadgsoc2013-empathy-be6cefc64d3893274dd907dcc094d6209b54352a.tar
gsoc2013-empathy-be6cefc64d3893274dd907dcc094d6209b54352a.tar.gz
gsoc2013-empathy-be6cefc64d3893274dd907dcc094d6209b54352a.tar.bz2
gsoc2013-empathy-be6cefc64d3893274dd907dcc094d6209b54352a.tar.lz
gsoc2013-empathy-be6cefc64d3893274dd907dcc094d6209b54352a.tar.xz
gsoc2013-empathy-be6cefc64d3893274dd907dcc094d6209b54352a.tar.zst
gsoc2013-empathy-be6cefc64d3893274dd907dcc094d6209b54352a.zip
accounts-dialog: ellipsize presence message
Long messages make this dialog looks weird and that's not really the point of this UI to display it anyway. https://bugzilla.gnome.org/show_bug.cgi?id=663627
-rw-r--r--src/empathy-accounts-dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c
index cd3ab1fc5..13e8f617b 100644
--- a/src/empathy-accounts-dialog.c
+++ b/src/empathy-accounts-dialog.c
@@ -2308,7 +2308,7 @@ accounts_dialog_build_ui (EmpathyAccountsDialog *dialog)
TP_CONNECTION_PRESENCE_TYPE_OFFLINE), GTK_ICON_SIZE_SMALL_TOOLBAR);
priv->label_status = gtk_label_new (NULL);
- gtk_label_set_line_wrap (GTK_LABEL (priv->label_status), TRUE);
+ gtk_label_set_ellipsize (GTK_LABEL (priv->label_status), PANGO_ELLIPSIZE_END);
gtk_box_pack_start (GTK_BOX (hbox), priv->throbber, FALSE, FALSE, 0);
gtk_box_pack_start (GTK_BOX (hbox), priv->image_status, FALSE, FALSE, 0);