Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion actions/Deafen.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def _update_display(self, value: dict):
else:
self.hide_error()
self._deafened = value["deaf"]
icon = Icons.DEAFEN if not self._deafened else Icons.UNDEAFEN
icon = Icons.DEAFEN if self._deafened else Icons.UNDEAFEN
self.icon_name = Icons(icon)
self.current_icon = self.get_icon(self.icon_name)
self.display_icon()
2 changes: 1 addition & 1 deletion actions/TogglePTT.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def _update_display(self, value: dict):
else:
self.hide_error()
self._mode = value["mode"]["type"]
icon = Icons.VOICE if self._mode == ActivityMethod.PTT else Icons.PTT
icon = Icons.PTT if self._mode == ActivityMethod.PTT else Icons.VOICE
self.icon_name = Icons(icon)
self.current_icon = self.get_icon(self.icon_name)
self.display_icon()
Loading