From 292220ff97cce5bcea36dc1242bbe7f82042d306 Mon Sep 17 00:00:00 2001 From: Denis Rangelov <84382-rangelovd@users.noreply.gitlab.gnome.org> Date: Sat, 21 Dec 2024 00:03:37 +0000 Subject: [PATCH] app/widgets: Replace confusing Search Actions icons with toggles --- app/widgets/gimpsearchpopup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/widgets/gimpsearchpopup.c b/app/widgets/gimpsearchpopup.c index 01e68d24972..62b6d986f17 100644 --- a/app/widgets/gimpsearchpopup.c +++ b/app/widgets/gimpsearchpopup.c @@ -271,9 +271,9 @@ gimp_search_popup_add_result (GimpSearchPopup *popup, if (GIMP_IS_TOGGLE_ACTION (action)) { if (gimp_toggle_action_get_active (GIMP_TOGGLE_ACTION (action))) - icon_name = "gtk-ok"; + icon_name = "gimp-toggle-on"; else - icon_name = "gtk-no"; + icon_name = "gimp-toggle-off"; } else { -- GitLab