* fixed crash that occurs if there is not enough space for the status toolbar (thanks Pan-(G))

git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@255 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
mattn 2008-06-18 09:41:02 +00:00
parent 55934fdc38
commit 9077ee9bab
1 changed files with 1 additions and 0 deletions

View File

@ -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));