From 0cee332f2e03545ed2f68477d2003e82a2fc06fe Mon Sep 17 00:00:00 2001 From: Scoopta Date: Sun, 15 Sep 2019 16:29:15 -0700 Subject: [PATCH] When images are not allowed the labels now get the name text --- src/wofi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wofi.c b/src/wofi.c index 8531ea7..55e84e8 100644 --- a/src/wofi.c +++ b/src/wofi.c @@ -132,6 +132,7 @@ static GtkWidget* create_label(char* text, char* action) { } else { wofi_property_box_add_property(WOFI_PROPERTY_BOX(box), "filter", text); GtkWidget* label = gtk_label_new(text); + gtk_widget_set_name(label, "text"); gtk_label_set_use_markup(GTK_LABEL(label), allow_markup); gtk_label_set_xalign(GTK_LABEL(label), 0); gtk_container_add(GTK_CONTAINER(box), label);