From d2d70fc013dbef6c21ffd5e4eb340a6f14bccf1e Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 30 Mar 2015 12:21:14 -0400 Subject: [PATCH] make only critical notifications display in presentation mode ref T2212 --- src/modules/notification/e_mod_popup.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/notification/e_mod_popup.c b/src/modules/notification/e_mod_popup.c index db4f899d1..5eca724be 100644 --- a/src/modules/notification/e_mod_popup.c +++ b/src/modules/notification/e_mod_popup.c @@ -129,9 +129,11 @@ notification_popup_notify(E_Notification_Notify *n, { case E_NOTIFICATION_NOTIFY_URGENCY_LOW: if (!notification_cfg->show_low) return; + if (e_config->mode.presentation) return; break; case E_NOTIFICATION_NOTIFY_URGENCY_NORMAL: if (!notification_cfg->show_normal) return; + if (e_config->mode.presentation) return; break; case E_NOTIFICATION_NOTIFY_URGENCY_CRITICAL: if (!notification_cfg->show_critical) return;