From 4e145de42d07ce16287a01036d4c3fe197e181d5 Mon Sep 17 00:00:00 2001 From: Scoopta Date: Sun, 1 Sep 2019 20:04:36 -0700 Subject: [PATCH] Set the name for the entry boxes --- src/wofi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wofi.c b/src/wofi.c index 23537d1..641ba8f 100644 --- a/src/wofi.c +++ b/src/wofi.c @@ -142,6 +142,7 @@ static GtkWidget* create_label(char* text, char* action) { static gboolean _insert_widget(gpointer data) { struct node* node = data; GtkWidget* box = create_label(node->text, node->action); + gtk_widget_set_name(box, "entry"); gtk_container_add(node->container, box); gtk_widget_show_all(box);