From 8ce6de6d8e520f96724d9e2c4c8da8f24e3e72a8 Mon Sep 17 00:00:00 2001 From: yangfl Date: Thu, 1 Oct 2020 04:40:19 +0800 Subject: [PATCH] Set libnotify icon --- src/engine/client/notifications.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/client/notifications.cpp b/src/engine/client/notifications.cpp index ec0934b5a..4a4a8c245 100644 --- a/src/engine/client/notifications.cpp +++ b/src/engine/client/notifications.cpp @@ -16,7 +16,7 @@ void NotificationsUninit() } void NotificationsNotify(const char *pTitle, const char *pMessage) { - NotifyNotification *pNotif = notify_notification_new(pTitle, pMessage, NULL); + NotifyNotification *pNotif = notify_notification_new(pTitle, pMessage, "ddnet"); notify_notification_show(pNotif, NULL); g_object_unref(G_OBJECT(pNotif)); }