From 3ad521ab9cb84506572621e13329012960ac5572 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 11 Nov 2015 11:50:51 -0500 Subject: [PATCH] ensure that all mixer volumes resolve to the appropriate gadget icon reported by Jef91 in #e --- src/modules/mixer/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/mixer/e_mod_main.c b/src/modules/mixer/e_mod_main.c index a8d16431b..d907a0940 100644 --- a/src/modules/mixer/e_mod_main.c +++ b/src/modules/mixer/e_mod_main.c @@ -102,7 +102,7 @@ _notify(const int val) icon = "audio-volume-muted"; else if ((val > 33) && (val < 66)) icon = "audio-volume-medium"; - else if (val < 33) + else if (val <= 33) icon = "audio-volume-low"; else icon = "audio-volume-high";