From a078d00eef49076ce8ac02fa00434b21eba095ac Mon Sep 17 00:00:00 2001 From: deepend Date: Tue, 17 Feb 2026 20:58:15 -0700 Subject: [PATCH] =?UTF-8?q?Updated=20GTK3=20tab=20dropdown=20icon=20consta?= =?UTF-8?q?nts=20to=20use=20ZoiteChat=E2=80=99s=20bundled=20zc-menu-*=20ic?= =?UTF-8?q?on=20names=20(detach/close)=20instead=20of=20theme-dependent=20?= =?UTF-8?q?names,=20so=20Windows=20builds=20render=20the=20intended=20menu?= =?UTF-8?q?=20icons=20consistently.=20Updated=20GTK3=20tray=20menu=20icon?= =?UTF-8?q?=20constants=20for=20Preferences/Quit=20to=20use=20bundled=20zc?= =?UTF-8?q?-menu-*=20icon=20names,=20fixing=20theme-missing=20icon=20issue?= =?UTF-8?q?s=20in=20Windows=20menu/dropdown=20contexts.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/fe-gtk/maingui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fe-gtk/maingui.c b/src/fe-gtk/maingui.c index 9743264d..8a35b240 100644 --- a/src/fe-gtk/maingui.c +++ b/src/fe-gtk/maingui.c @@ -61,8 +61,8 @@ #endif #if HAVE_GTK3 -#define ICON_TAB_DETACH "edit-redo" -#define ICON_TAB_CLOSE "window-close" +#define ICON_TAB_DETACH "zc-menu-detach" +#define ICON_TAB_CLOSE "zc-menu-close" #define ICON_TAB_PREVIOUS "go-previous" #define ICON_TAB_NEXT "go-next" #define ICON_ENTRY_ERROR "dialog-error"