From 65feecd32db8b3d7065ad44a6d62fd383034a301 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Mon, 12 May 2025 10:27:44 -0300 Subject: [PATCH] app: Remove not-working GIMP_ICONS_LIKE_A_BOSS 'gtk-menu-images' simply does not work on GTK3 (tested on AppImage, Flatpak and Windows) and it is not present on GTK4. --- app/gui/gui.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/app/gui/gui.c b/app/gui/gui.c index 269e1f9e13..013d3df5c8 100644 --- a/app/gui/gui.c +++ b/app/gui/gui.c @@ -567,17 +567,6 @@ gui_restore_after_callback (Gimp *gimp, status_callback (NULL, _("Documents"), 0.9); gimp_recent_list_load (gimp); - /* enable this to always have icons everywhere */ - if (g_getenv ("GIMP_ICONS_LIKE_A_BOSS")) - { - GdkScreen *screen = gdk_screen_get_default (); - - g_object_set (G_OBJECT (gtk_settings_get_for_screen (screen)), - "gtk-button-images", TRUE, - "gtk-menu-images", TRUE, - NULL); - } - ui_configurer = g_object_new (GIMP_TYPE_UI_CONFIGURER, "gimp", gimp, NULL);