ensure that all mixer volumes resolve to the appropriate gadget icon

reported by Jef91 in #e
This commit is contained in:
Mike Blumenkrantz 2015-11-11 11:50:51 -05:00
parent b018ac1abc
commit 3ad521ab9c
1 changed files with 1 additions and 1 deletions

View File

@ -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";