app: log transmit state changes to chatlog

This commit is contained in:
Username
2026-02-24 13:09:03 +01:00
parent 89ebad6c15
commit ee145b4071

View File

@@ -444,6 +444,11 @@ class TuimbleApp(App):
self._audio.capturing = transmitting
status = self.query_one("#status", StatusBar)
status.ptt_active = transmitting
chatlog = self.query_one("#chatlog", ChatLog)
if transmitting:
chatlog.write("[#e0af68]● transmitting[/]")
else:
chatlog.write("[dim]○ stopped transmitting[/dim]")
# -- resize --------------------------------------------------------------