feat(icom): the speaker choice appears beside the RX-audio option too

Same remembered preference as the console's speaker button, surfaced where
the stream itself is enabled — tick RX audio and decide in the same breath
whether it reaches the speakers. Applied immediately, no save needed.
This commit is contained in:
2026-08-29 20:02:28 +02:00
parent b244575937
commit 7ac342e2d4
6 changed files with 38 additions and 4 deletions
+2
View File
@@ -406,6 +406,8 @@ export function GetAntGeniusSettings():Promise<main.AntGeniusSettings>;
export function GetAntGeniusStatus():Promise<antgenius.Status>;
export function GetAudioMonitorPref():Promise<boolean>;
export function GetAudioSettings():Promise<main.AudioSettings>;
export function GetAutostartPrograms():Promise<Array<main.AutostartProgram>>;
+4
View File
@@ -750,6 +750,10 @@ export function GetAntGeniusStatus() {
return window['go']['main']['App']['GetAntGeniusStatus']();
}
export function GetAudioMonitorPref() {
return window['go']['main']['App']['GetAudioMonitorPref']();
}
export function GetAudioSettings() {
return window['go']['main']['App']['GetAudioSettings']();
}