commit ae2c83c6fed29e44f9a1bf2758b020e00878698b
parent 7446881ca2b40aeacac4053462228443da70cbbd
Author: Paul <paul@claws-mail.org>
Date: Wed, 26 Feb 2025 18:19:17 +0000
fix bug 4848, 'The new ayatana tray icon displays no icon when there are new messages'
thanks to Steve Evans
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/plugins/notification/notification_ayatana_indicator.c b/src/plugins/notification/notification_ayatana_indicator.c
@@ -1,5 +1,5 @@
/* Notification plugin for Claws Mail
- * Copyright (C) 2005-2024 Holger Berndt, Jan Willamowius and the Claws Mail Team.
+ * Copyright (C) 2005-2025 the Claws Mail Team, Holger Berndt and Jan Willamowius
*
* 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
@@ -85,7 +85,7 @@ void notification_update_ayatana_indicator(void)
gtk_menu_item_set_label(GTK_MENU_ITEM(status), buf);
if (count.new_msgs > 0) {
- app_indicator_set_icon_full(ayatana_indicator, "indicator-messages-new", "");
+ app_indicator_set_icon_full(ayatana_indicator, "mail-message-new-symbolic", "");
} else if (count.unread_msgs > 0) {
app_indicator_set_icon_full(ayatana_indicator, "mail-unread-symbolic", "");
} else {