Skip to content

Commit

Permalink
fix(notification): notification shows the image icon
Browse files Browse the repository at this point in the history
  • Loading branch information
snakedye committed Jan 8, 2021
1 parent a7fda1f commit eb53e5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/notification.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ void notification_send(char *title, char *message) {
#ifdef HAVE_LIBNOTIFY
notify_init("Hello world!");
NotifyNotification *notification =
notify_notification_new(title, message, "dialog-information");
notify_notification_new(title, message, "image");
notify_notification_show(notification, NULL);
g_object_unref(G_OBJECT(notification));
notify_uninit();
#endif
}
}

0 comments on commit eb53e5c

Please sign in to comment.