This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enlightenment.
View the commit online.
commit 2e30f391fb77a86a613835964f9c6556c27fef84
Author: Carsten Haitzler <[email protected]>
AuthorDate: Fri Sep 9 09:40:38 2022 +0100
notification - fix property name for suppress sound
---
src/bin/e_notification.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/bin/e_notification.c b/src/bin/e_notification.c
index 2153efa3a..ec9b3cd87 100644
--- a/src/bin/e_notification.c
+++ b/src/bin/e_notification.c
@@ -144,12 +144,12 @@ hints_dict_iter(void *data, const void *key, Eldbus_Message_Iter *var)
// 1== remove notification when action invoked - no timeout
n->resident = val;
}
- else if (!strcmp(key, "supress-sound"))
+ else if (!strcmp(key, "suppress-sound"))
{
Eina_Bool val = 0;
eldbus_message_iter_arguments_get(var, "b", &val);
- printf("NOT: supress-sound=%i\n", val);
+ printf("NOT: suppress-sound=%i\n", val);
// 1== remove notification when action invoked - no timeout
n->suppress_sound = val;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.