FIRE-31322 Fix linux notifications being low priority and ignored by recent gnome versions.

master
Liny 2022-04-29 13:46:52 -07:00
parent 53d0d13da3
commit 4ee757a91b
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ void DesktopNotifierLinux::showNotification( const std::string& notification_tit
m_pLibNotify->mNotificationUpdate( m_pNotification,(gchar*)notification_title.c_str(), (gchar*)notification_message.c_str(), m_strIcon.c_str() );
m_pLibNotify->mNotificationSetUrgency( m_pNotification, NOTIFY_URGENCY_LOW );
m_pLibNotify->mNotificationSetUrgency( m_pNotification, NOTIFY_URGENCY_NORMAL );
m_pLibNotify->mNotificationSetCategory( m_pNotification, ( gchar* )notification_type.c_str() );
m_pLibNotify->mNotificationSetTimeout( m_pNotification, NOTIFICATION_TIMEOUT_MS ); // NotifyOSD ignores this, sadly.