Vertically center status bar label

This commit is contained in:
Paul Dicker
2025-04-21 09:07:36 +02:00
committed by Stéphane Lesimple
parent 93be13b0ee
commit 7e416990cd

View File

@@ -490,7 +490,6 @@ void GuiCreateMainWindow(int *argc, char ***argv)
Closure->status = gtk_label_new(NULL);
gtk_label_set_ellipsize(GTK_LABEL(Closure->status), PANGO_ELLIPSIZE_END);
gtk_label_set_xalign(GTK_LABEL(Closure->status), 0.0);
gtk_label_set_yalign(GTK_LABEL(Closure->status), 0.0);
gtk_box_pack_start(GTK_BOX(status_box), GTK_WIDGET(Closure->status), TRUE, TRUE, 5);
button = gtk_button_new();