Made GTK2-only chanlist menu popup and button icon paths explicit with #if !HAVE_GTK3, keeping GTK3 named-icon usage separate from stock icons.

Applied the same GTK2-guarded stock icon usage in plugingui and menu handling, including menu popups and icon helpers, to isolate GTK2-only calls.
This commit is contained in:
2026-01-23 07:47:16 -07:00
parent fae83a34bc
commit 8ba068041d
3 changed files with 24 additions and 12 deletions

View File

@@ -283,7 +283,8 @@ plugingui_open (void)
G_CALLBACK (plugingui_reloadbutton_cb), view);
gtk_widget_show (button);
}
#else
#endif
#if !HAVE_GTK3
gtkutil_button (hbox, GTK_STOCK_REVERT_TO_SAVED, NULL,
plugingui_loadbutton_cb, NULL, _("_Load..."));