Feat: text to speech source controls PTT of connected sinks

This commit is contained in:
Davide Passoni
2025-01-20 17:24:50 +01:00
parent 77a7397f1c
commit 1374f270eb
2 changed files with 4 additions and 6 deletions

View File

@@ -80,12 +80,8 @@ export const UnitSinkPanel = forwardRef((props: { sink: UnitSink; shortcutKeys:
<OlStateButton
checked={props.sink.getPtt()}
icon={faMicrophoneLines}
onClick={() => {}}
onMouseDown={() => {
props.sink.setPtt(true);
}}
onMouseUp={() => {
props.sink.setPtt(false);
onClick={() => {
props.sink.setPtt(!props.sink.getPtt());
}}
tooltip="Talk on frequency"
></OlStateButton>