diff options
author | Renato Araujo Oliveira Filho <renato.filho@canonical.com> | 2016-04-15 14:23:40 -0300 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-08-29 14:37:39 +0200 |
commit | d80df1bbd068f97457575fcd20f9664f2a5d11c4 (patch) | |
tree | 20811b561b91e678b2bff2e5b4e080ce80a447ed | |
parent | 6d9cae0de3d127c5b757fc6af482c047a1d81ab9 (diff) | |
download | ayatana-indicator-datetime-d80df1bbd068f97457575fcd20f9664f2a5d11c4.tar.gz ayatana-indicator-datetime-d80df1bbd068f97457575fcd20f9664f2a5d11c4.tar.bz2 ayatana-indicator-datetime-d80df1bbd068f97457575fcd20f9664f2a5d11c4.zip |
revert last change.
-rw-r--r-- | src/snap.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/snap.cpp b/src/snap.cpp index a1caf62..259592e 100644 --- a/src/snap.cpp +++ b/src/snap.cpp @@ -101,10 +101,7 @@ public: // calendar events are muted in silent mode; alarm clocks never are std::shared_ptr<ain::Sound> sound; - // play reminder sound even if the event is only a text reminder. - // we choose that because events synced from google only get text reminders - bool play_sound = (alarm.has_sound() || alarm.has_text()); - if (appointment.is_ubuntu_alarm() || (play_sound && !silent_mode())) { + if (appointment.is_ubuntu_alarm() || (alarm.has_sound() && !silent_mode())) { // create the sound. const auto role = appointment.is_ubuntu_alarm() ? "alarm" : "alert"; const auto uri = get_alarm_uri(appointment, alarm, m_settings); |