Convert gtk_misc_set_padding to gtk_widget_set_margin_start

This commit is contained in:
Paul Dicker
2025-04-07 14:22:37 +02:00
committed by Stéphane Lesimple
parent 0392e443f5
commit fdc09176d9
8 changed files with 22 additions and 22 deletions

View File

@@ -179,7 +179,7 @@ void CreateRS03VerifyWindow(Method *self, GtkWidget *parent)
wl->cmpHeadline = gtk_label_new(NULL);
gtk_label_set_xalign(GTK_LABEL(wl->cmpHeadline), 0.0);
gtk_misc_set_padding(GTK_MISC(wl->cmpHeadline), 5, 0);
gtk_widget_set_margin_start(wl->cmpHeadline, 5);
gtk_box_pack_start(GTK_BOX(parent), wl->cmpHeadline, FALSE, FALSE, 3);
sep = gtk_separator_new(GTK_ORIENTATION_HORIZONTAL);