Skip to content
Snippets Groups Projects
Commit 762615b2 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

Fix #721

parent b94aa01a
No related branches found
No related tags found
No related merge requests found
...@@ -182,7 +182,7 @@ notify_no_accounts( ) ...@@ -182,7 +182,7 @@ notify_no_accounts( )
notify_notification_attach_to_status_icon( notification , get_status_icon() ); notify_notification_attach_to_status_icon( notification , get_status_icon() );
#endif #endif
notify_notification_set_timeout( notification , NOTIFY_EXPIRES_DEFAULT ); notify_notification_set_timeout( notification , NOTIFY_EXPIRES_DEFAULT );
notify_notification_add_action( notification , "setup" , _("Setup Accounts") , (NotifyActionCallback) setup_accounts_cb , NULL , NULL ); //notify_notification_add_action( notification , "setup" , _("Setup Accounts") , (NotifyActionCallback) setup_accounts_cb , NULL , NULL );
if (!notify_notification_show (notification, NULL)) { if (!notify_notification_show (notification, NULL)) {
g_print("notify(), failed to send notification\n"); g_print("notify(), failed to send notification\n");
...@@ -223,7 +223,7 @@ notify_no_registered_accounts( ) ...@@ -223,7 +223,7 @@ notify_no_registered_accounts( )
notify_notification_attach_to_status_icon( notification , get_status_icon() ); notify_notification_attach_to_status_icon( notification , get_status_icon() );
#endif #endif
notify_notification_set_timeout( notification , NOTIFY_EXPIRES_DEFAULT ); notify_notification_set_timeout( notification , NOTIFY_EXPIRES_DEFAULT );
notify_notification_add_action( notification , "setup" , _("Setup Accounts") , (NotifyActionCallback) setup_accounts_cb , NULL , NULL ); //notify_notification_add_action( notification , "setup" , _("Setup Accounts") , (NotifyActionCallback) setup_accounts_cb , NULL , NULL );
if (!notify_notification_show (notification, NULL)) { if (!notify_notification_show (notification, NULL)) {
g_print("notify(), failed to send notification\n"); g_print("notify(), failed to send notification\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment