mirror of
https://github.com/martinrotter/rssguard.git
synced 2024-12-26 16:13:32 +01:00
implement temporary status bar messages
This commit is contained in:
parent
00dee012f1
commit
c9ca548ebb
@ -496,14 +496,15 @@ void Application::showGuiMessage(Notification::Event event,
|
||||
const GuiAction& action,
|
||||
QWidget* parent) {
|
||||
|
||||
if (SystemTrayIcon::areNotificationsEnabled() && dest.m_tray) {
|
||||
if (SystemTrayIcon::areNotificationsEnabled()) {
|
||||
auto notification = m_notifications->notificationForEvent(event);
|
||||
|
||||
notification.playSound(this);
|
||||
|
||||
if (SystemTrayIcon::isSystemTrayDesired() &&
|
||||
SystemTrayIcon::isSystemTrayAreaAvailable() &&
|
||||
notification.balloonEnabled()) {
|
||||
notification.balloonEnabled() &&
|
||||
dest.m_tray) {
|
||||
trayIcon()->showMessage(msg.m_title, msg.m_message, msg.m_type, TRAY_ICON_BUBBLE_TIMEOUT, std::move(action.m_action));
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user