aboutsummaryrefslogtreecommitdiff
path: root/src/snap.cpp
diff options
context:
space:
mode:
authorArthur Mello <arthur.mello@canonical.com>2016-06-29 21:37:56 -0300
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-08-29 14:37:39 +0200
commitf42d0a01dcbd66920f65d1e5bd784914a797d773 (patch)
treec7b060be21ebc32bf85b8e038008cf814b6393db /src/snap.cpp
parentc12e9b28189aa11a28ca883cc4d5ecb4da57db7c (diff)
downloadayatana-indicator-datetime-f42d0a01dcbd66920f65d1e5bd784914a797d773.tar.gz
ayatana-indicator-datetime-f42d0a01dcbd66920f65d1e5bd784914a797d773.tar.bz2
ayatana-indicator-datetime-f42d0a01dcbd66920f65d1e5bd784914a797d773.zip
Fix notifications so it respects if it should or not show bubbles or add to notification list
Diffstat (limited to 'src/snap.cpp')
-rw-r--r--src/snap.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/snap.cpp b/src/snap.cpp
index 273f125..1b7c183 100644
--- a/src/snap.cpp
+++ b/src/snap.cpp
@@ -96,10 +96,7 @@ public:
const bool interactive = appointment.is_ubuntu_alarm() && m_engine->supports_actions();
// force the system to stay awake
- std::shared_ptr<ain::Awake> awake;
- if (appointment.is_ubuntu_alarm() || calendar_bubbles_enabled()) {
- awake = std::make_shared<ain::Awake>(m_engine->app_name());
- }
+ std::shared_ptr<ain::Awake> awake = std::make_shared<ain::Awake>(m_engine->app_name());
// calendar events are muted in silent mode; alarm clocks never are
std::shared_ptr<ain::Sound> sound;
@@ -183,6 +180,9 @@ public:
});
}
+ b.set_show_notification_bubble(appointment.is_ubuntu_alarm() || calendar_bubbles_enabled());
+ b.set_post_to_messaging_menu(appointment.is_ubuntu_alarm() || calendar_list_enabled());
+
const auto key = m_engine->show(b);
if (key)
m_notifications.insert (key);