From: mattn Date: Wed, 18 Jun 2008 09:41:02 +0000 (+0000) Subject: * fixed crash that occurs if there is not enough space for the status toolbar (thanks... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=da8b36266a62560010e8b1b1ef22b3d307ff1cfe;p=xonotic%2Fnetradiant.git * fixed crash that occurs if there is not enough space for the status toolbar (thanks Pan-(G)) git-svn-id: https://zerowing.idsoftware.com/svn/radiant/GtkRadiant/trunk@255 8a3a26a2-13c4-0310-b231-cf6edde360e5 --- diff --git a/radiant/mainframe.cpp b/radiant/mainframe.cpp index 785d86ac..33797301 100644 --- a/radiant/mainframe.cpp +++ b/radiant/mainframe.cpp @@ -2574,6 +2574,7 @@ GtkWidget* create_main_statusbar(GtkWidget *pStatusLabel[c_count_status]) gtk_frame_set_shadow_type(frame, GTK_SHADOW_IN); GtkLabel* label = GTK_LABEL(gtk_label_new ("Label")); + gtk_label_set_ellipsize( label, PANGO_ELLIPSIZE_END); gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); gtk_misc_set_padding(GTK_MISC(label), 4, 2); gtk_widget_show(GTK_WIDGET(label));