Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[lipstick] Default notification urgency should be normal. Fixes JB#51339
0 as default was giving low.
  • Loading branch information
pvuorela committed Sep 24, 2020
1 parent 99e153c commit 236d824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/notifications/lipsticknotification.cpp
Expand Up @@ -279,7 +279,7 @@ QString LipstickNotification::subText() const

int LipstickNotification::urgency() const
{
return m_hints.value(LipstickNotification::HINT_URGENCY).toInt();
return m_hints.value(LipstickNotification::HINT_URGENCY, LipstickNotification::Normal).toInt();
}

int LipstickNotification::itemCount() const
Expand Down

0 comments on commit 236d824

Please sign in to comment.