From ff1a104b2f73b3d67ab62265a1e42d8133fbf91a Mon Sep 17 00:00:00 2001 From: step- Date: Fri, 30 Jun 2023 16:04:37 +0200 Subject: [PATCH] fix regression: can't set label of notification menu item if a stock icon is also specified for the menu item. --- src/notification.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/notification.c b/src/notification.c index fa7e024..0b73055 100644 --- a/src/notification.c +++ b/src/notification.c @@ -219,6 +219,7 @@ popup_menu_cb (GtkStatusIcon *icon, guint button, guint activate_time, gpointer if (b) { SETUNDEPR (item, gtk_image_menu_item_new_from_stock, d->icon, NULL); + gtk_menu_item_set_label (GTK_MENU_ITEM (item), d->name); } else {