From 5eaeb13edb7b8c6ab58ae661d68f6645773a9212 Mon Sep 17 00:00:00 2001 From: Ivan Dmitrievich Yartsev Date: Wed, 4 Feb 2026 18:20:02 +0600 Subject: [PATCH] Root button switched label and checkbox button --- source/libublsettingsui-gtk3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libublsettingsui-gtk3.c b/source/libublsettingsui-gtk3.c index 56ceae6..a2a75c5 100644 --- a/source/libublsettingsui-gtk3.c +++ b/source/libublsettingsui-gtk3.c @@ -548,8 +548,8 @@ GtkWidget *yon_root_button_new(config_str args, int args_size){ GtkWidget *box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL,5); GtkWidget *root_label = gtk_label_new(ROOT_CHECK_LABEL); GtkWidget *root_check = gtk_check_button_new(); - gtk_box_pack_start(GTK_BOX(box),root_label,1,1,0); gtk_box_pack_start(GTK_BOX(box),root_check,0,0,0); + gtk_box_pack_start(GTK_BOX(box),root_label,1,1,0); gtk_container_add(GTK_CONTAINER(root_item),box); gtk_widget_show_all(root_item); if (getuid()==0) {