Skip to content

Commit

Permalink
Improve volume up/down icons
Browse files Browse the repository at this point in the history
  • Loading branch information
ejohb committed Dec 22, 2022
1 parent ce4e851 commit 4a9c1fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions amniotic/mqtt/control.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ def set_value(self, value) -> Any:

class ButtonVolumeDown(Button):
NAME = 'Master Volume Down'
ICON_SUFFIX = 'volume-low'
ICON_SUFFIX = 'volume-minus'

def handle_incoming(self, value: Any):
"""
Expand All @@ -402,7 +402,7 @@ def handle_incoming(self, value: Any):

class ButtonVolumeUp(Button):
NAME = 'Master Volume Up'
ICON_SUFFIX = 'volume-high'
ICON_SUFFIX = 'volume-plus'

def handle_incoming(self, value: Any):
"""
Expand Down

0 comments on commit 4a9c1fd

Please sign in to comment.