Skip to content

Commit

Permalink
- Highlight self keeps self visible in only talking mode
Browse files Browse the repository at this point in the history
  • Loading branch information
trigg committed Aug 14, 2024
1 parent 7f41564 commit e2ee444
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion discover_overlay/voice_overlay.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,9 +544,11 @@ def overlay_draw(self, w, context, data=None):
speaking = "speaking" in user and user["speaking"]

# Extend timer if mid-speaking
if self.highlight_self and self_user == user:
continue
if speaking:
user['lastspoken'] = perf_counter()
if not speaking:
else:
grace = self.only_speaking_grace_period

if (
Expand Down

0 comments on commit e2ee444

Please sign in to comment.