From 23b15a8a67dd0202bf1ccb006c3c053435f985f1 Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Fri, 15 Sep 2023 13:52:54 +0900 Subject: [PATCH] [bugfix] Config Window: Add functions that replaces the threshold check button's passive/active state within the callbackCloseConfigWindow function(main.py). --- main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.py b/main.py index a4f60f3f..1979f3ee 100644 --- a/main.py +++ b/main.py @@ -242,7 +242,9 @@ def callbackCloseConfigWindow(): if config.ENABLE_TRANSCRIPTION_RECEIVE is True: startThreadingTranscriptionReceiveMessage() model.stopCheckMicEnergy() + view.replaceMicThresholdCheckButton_Passive() model.stopCheckSpeakerEnergy() + view.replaceSpeakerThresholdCheckButton_Passive() # Compact Mode Switch def callbackEnableConfigWindowCompactMode():