talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 73e5be590c21323a63b9b2c8eff2a46b49e526ad
parent 56c47299c6f3146a8354cd63c1c8c385cdd66a1b
Author: Paul <paul@claws-mail.org>
Date:   Mon, 28 Apr 2025 12:36:32 +0100

fix (sometimes) oversized 'help' icon in dialogue buttons

Diffstat:
Msrc/gtk/gtkutils.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gtk/gtkutils.c b/src/gtk/gtkutils.c @@ -1,6 +1,6 @@ /* * Claws Mail -- a GTK based, lightweight, and fast e-mail client - * Copyright (C) 1999-2024 the Claws Mail team and Hiroyuki Yamamoto + * Copyright (C) 1999-2025 the Claws Mail team and Hiroyuki Yamamoto * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -101,7 +101,7 @@ void gtkut_stock_button_add_help(GtkWidget *bbox, GtkWidget **help_btn) { cm_return_if_fail(bbox != NULL); - *help_btn = gtkut_stock_button("help-browser", "Help"); + *help_btn = gtkut_stock_button("help-browser-symbolic", "Help"); gtk_widget_set_can_default(*help_btn, TRUE); gtk_box_pack_end(GTK_BOX (bbox), *help_btn, TRUE, TRUE, 0);