From 21a9edd43e908385fd9d9d3cb4873e81a70ac458 Mon Sep 17 00:00:00 2001 From: misyaguziya Date: Fri, 9 Jun 2023 18:12:41 +0900 Subject: [PATCH] add ui font --- VRCT.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/VRCT.py b/VRCT.py index 68baad73..26c8e792 100644 --- a/VRCT.py +++ b/VRCT.py @@ -675,6 +675,12 @@ class ToplevelWindowConfig(customtkinter.CTkToplevel): self.optionmenu_ui_scaling.configure(font=customtkinter.CTkFont(family=choice)) self.label_font_family.configure(font=customtkinter.CTkFont(family=choice)) self.optionmenu_font_family.configure(font=customtkinter.CTkFont(family=choice)) + self.label_mic_device.configure(font=customtkinter.CTkFont(family=choice)) + self.optionmenu_mic_device.configure(font=customtkinter.CTkFont(family=choice)) + self.label_input_voice_language.configure(font=customtkinter.CTkFont(family=choice)) + self.optionmenu_input_voice_language.configure(font=customtkinter.CTkFont(family=choice)) + self.label_mic_is_dynamic.configure(font=customtkinter.CTkFont(family=choice)) + self.label_mic_threshold.configure(font=customtkinter.CTkFont(family=choice)) self.label_ip_address.configure(font=customtkinter.CTkFont(family=choice)) self.entry_ip_address.configure(font=customtkinter.CTkFont(family=choice)) self.label_port.configure(font=customtkinter.CTkFont(family=choice))