From c46d3ffdda20e934763b1530d28c98a6b5086c93 Mon Sep 17 00:00:00 2001 From: zvon Date: Sun, 9 Jul 2023 11:02:19 +0200 Subject: [PATCH] Rename `#expander` to `#expander-box` --- src/wofi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wofi.c b/src/wofi.c index 29889a8..3a90bda 100644 --- a/src/wofi.c +++ b/src/wofi.c @@ -592,7 +592,7 @@ static gboolean _insert_widget(gpointer data) { gtk_expander_set_label_widget(GTK_EXPANDER(parent), box); GtkWidget* exp_box = gtk_list_box_new(); - gtk_widget_set_name(exp_box, "expander"); + gtk_widget_set_name(exp_box, "expander-box"); gtk_list_box_set_activate_on_single_click(GTK_LIST_BOX(exp_box), single_click); g_signal_connect(exp_box, "row-activated", G_CALLBACK(activate_item), NULL); gtk_container_add(GTK_CONTAINER(parent), exp_box);