notify: Use the application ID if available to set the fallback app name
This commit is contained in:
parent
e05030875e
commit
1da6996491
|
@ -151,6 +151,14 @@ notify_init (const char *app_name)
|
||||||
if (_initted)
|
if (_initted)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
|
#ifdef GLIB_VERSION_2_32
|
||||||
|
if (app_name == NULL && g_application_get_default ()) {
|
||||||
|
GApplication *application = g_application_get_default ();
|
||||||
|
|
||||||
|
app_name = g_application_get_application_id (application);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
notify_set_app_name (app_name);
|
notify_set_app_name (app_name);
|
||||||
|
|
||||||
#if !GLIB_CHECK_VERSION (2, 36, 0)
|
#if !GLIB_CHECK_VERSION (2, 36, 0)
|
||||||
|
|
Loading…
Reference in New Issue