summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@gnome.org>2015-04-21 19:36:08 -0500
committerDebarshi Ray <debarshir@gnome.org>2015-04-28 16:04:01 +0200
commit4cac3d17dc232fbdeeba0f95a45a776ce3df734c (patch)
treed1fbc7caac101144334718d03715fb6b0aab7e35
parentcd761467adae43e4b9d475567cb468379eee4f30 (diff)
downloadempathy-4cac3d17dc232fbdeeba0f95a45a776ce3df734c.tar.gz
Limit width of first run dialog
https://bugzilla.gnome.org/show_bug.cgi?id=747460
-rw-r--r--libempathy-gtk/empathy-local-xmpp-assistant-widget.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-local-xmpp-assistant-widget.c b/libempathy-gtk/empathy-local-xmpp-assistant-widget.c
index 6ee8711a3..ff34b168c 100644
--- a/libempathy-gtk/empathy-local-xmpp-assistant-widget.c
+++ b/libempathy-gtk/empathy-local-xmpp-assistant-widget.c
@@ -85,6 +85,7 @@ empathy_local_xmpp_assistant_widget_constructed (GObject *object)
"details below are correct."));
gtk_misc_set_alignment (GTK_MISC (w), 0, 0.5);
gtk_label_set_line_wrap (GTK_LABEL (w), TRUE);
+ gtk_label_set_max_width_chars (GTK_LABEL (w), 60);
gtk_grid_attach (GTK_GRID (self), w, 0, 0, 1, 1);
gtk_widget_show (w);