discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=3ad521ab9cb84506572621e13329012960ac5572

commit 3ad521ab9cb84506572621e13329012960ac5572
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Wed Nov 11 11:50:51 2015 -0500

    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 a8d1643..d907a09 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";

-- 


Reply via email to