Please find an additional patch attached that re-enables the menu icons.
>From 06ff4e9f56cace6fbad943139a254cc0d9f49b48 Mon Sep 17 00:00:00 2001
From: Bastian Germann <[email protected]>
Date: Sun, 8 Feb 2026 21:59:47 +0100
Subject: [PATCH] Show menu icons

---
 src/main.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/main.c b/src/main.c
index a7baf0a..bcd9b8b 100644
--- a/src/main.c
+++ b/src/main.c
@@ -235,6 +235,13 @@ main (int argc, char *argv[])
 #endif
 
 	gtk_init (&argc, &argv);
+
+	/* GTK3 hides menu/button icons by default; restore GTK2 behavior */
+	g_object_set (gtk_settings_get_default (),
+		"gtk-menu-images", TRUE,
+		"gtk-button-images", TRUE,
+		NULL);
+
 	gtk_mismatch = check_gtk_version ();
 	if (gtk_mismatch)
 	{

Reply via email to