From 4ef73793d8be4dc4f404f4737a1fea1f900b1321 Mon Sep 17 00:00:00 2001 From: misyaguziya Date: Sat, 1 Jul 2023 23:59:58 +0900 Subject: [PATCH] Add UI changes to font change function --- window_config.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/window_config.py b/window_config.py index 85f0100e..adbe90b9 100644 --- a/window_config.py +++ b/window_config.py @@ -609,6 +609,10 @@ class ToplevelWindowConfig(customtkinter.CTkToplevel): self.label_input_mic_dynamic_energy_threshold.configure(font=customtkinter.CTkFont(family=choice)) self.label_input_mic_record_timeout.configure(font=customtkinter.CTkFont(family=choice)) self.entry_input_mic_record_timeout.configure(font=customtkinter.CTkFont(family=choice)) + self.label_input_mic_phrase_timeout.configure(font=customtkinter.CTkFont(family=choice)) + self.entry_input_mic_phrase_timeout.configure(font=customtkinter.CTkFont(family=choice)) + self.label_input_mic_max_phrases.configure(font=customtkinter.CTkFont(family=choice)) + self.entry_input_mic_max_phrases.configure(font=customtkinter.CTkFont(family=choice)) self.label_input_speaker_device.configure(font=customtkinter.CTkFont(family=choice)) self.optionmenu_input_speaker_device.configure(font=customtkinter.CTkFont(family=choice)) self.optionmenu_input_speaker_device._dropdown_menu.configure(font=customtkinter.CTkFont(family=choice)) @@ -620,6 +624,10 @@ class ToplevelWindowConfig(customtkinter.CTkToplevel): self.label_input_speaker_dynamic_energy_threshold.configure(font=customtkinter.CTkFont(family=choice)) self.label_input_speaker_record_timeout.configure(font=customtkinter.CTkFont(family=choice)) self.entry_input_speaker_record_timeout.configure(font=customtkinter.CTkFont(family=choice)) + self.label_input_speaker_phrase_timeout.configure(font=customtkinter.CTkFont(family=choice)) + self.entry_input_speaker_phrase_timeout.configure(font=customtkinter.CTkFont(family=choice)) + self.label_input_speaker_max_phrases.configure(font=customtkinter.CTkFont(family=choice)) + self.entry_input_speaker_max_phrases.configure(font=customtkinter.CTkFont(family=choice)) # tab Parameter self.label_ip_address.configure(font=customtkinter.CTkFont(family=choice))