From 4025e0ae70a0a20020e0412ee1482883b3dc2239 Mon Sep 17 00:00:00 2001 From: misygauziya Date: Wed, 12 Jul 2023 01:26:05 +0900 Subject: [PATCH] [bugfix] Add change font items MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit フォント変更時の記載漏れ --- window_config.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/window_config.py b/window_config.py index 1587cc62..f6a97b4b 100644 --- a/window_config.py +++ b/window_config.py @@ -656,7 +656,7 @@ class ToplevelWindowConfig(CTkToplevel): row += 1 self.label_checkbox_auto_clear_chatbox = CTkLabel( self.tabview_config.tab("Others"), - text="Auto clear chat box", + text="Auto clear chat box:", fg_color="transparent", font=CTkFont(family=self.parent.FONT_FAMILY) ) @@ -736,6 +736,7 @@ class ToplevelWindowConfig(CTkToplevel): self.label_input_mic_voice_language.configure(font=CTkFont(family=choice)) self.optionmenu_input_mic_voice_language.configure(font=CTkFont(family=choice)) self.optionmenu_input_mic_voice_language._dropdown_menu.configure(font=CTkFont(family=choice)) + self.checkbox_input_mic_threshold_check.configure(font=CTkFont(family=choice)) self.label_input_mic_energy_threshold.configure(font=CTkFont(family=choice)) self.label_input_mic_dynamic_energy_threshold.configure(font=CTkFont(family=choice)) self.label_input_mic_record_timeout.configure(font=CTkFont(family=choice)) @@ -752,6 +753,7 @@ class ToplevelWindowConfig(CTkToplevel): self.label_input_speaker_voice_language.configure(font=CTkFont(family=choice)) self.optionmenu_input_speaker_voice_language.configure(font=CTkFont(family=choice)) self.optionmenu_input_speaker_voice_language._dropdown_menu.configure(font=CTkFont(family=choice)) + self.checkbox_input_speaker_threshold_check.configure(font=CTkFont(family=choice)) self.label_input_speaker_energy_threshold.configure(font=CTkFont(family=choice)) self.label_input_speaker_dynamic_energy_threshold.configure(font=CTkFont(family=choice)) self.label_input_speaker_record_timeout.configure(font=CTkFont(family=choice)) @@ -771,6 +773,9 @@ class ToplevelWindowConfig(CTkToplevel): self.label_message_format.configure(font=CTkFont(family=choice)) self.entry_message_format.configure(font=CTkFont(family=choice)) + # tab Others + self.label_checkbox_auto_clear_chatbox.configure(font=CTkFont(family=choice)) + # main window self.parent.checkbox_translation.configure(font=CTkFont(family=choice)) self.parent.checkbox_transcription_send.configure(font=CTkFont(family=choice))