use a plain GtkBox for the statusbar

This commit is contained in:
Landry Breuil
2014-12-11 22:44:12 +01:00
parent f33f64410f
commit f7dc12a375

View File

@@ -100,7 +100,11 @@ xtm_process_statusbar_init (XtmProcessStatusbar *statusbar)
}
#endif
#if HAVE_GTK3
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 16);
#else
hbox = gtk_hbox_new (FALSE, 16);
#endif
gtk_box_pack_start (GTK_BOX (area), hbox, TRUE, TRUE, 6);
statusbar->label_num_processes = gtk_label_new (NULL);