From 1e6c5ad1bc95927072a959aae7fbf0b99799b023 Mon Sep 17 00:00:00 2001 From: misyaguziya Date: Sun, 11 Jun 2023 17:45:22 +0900 Subject: [PATCH] add ui font change --- VRCT.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VRCT.py b/VRCT.py index 658b1a10..aa52f8f8 100644 --- a/VRCT.py +++ b/VRCT.py @@ -273,6 +273,7 @@ class ToplevelWindowConfig(customtkinter.CTkToplevel): self.tabview_config.tab("Transcription").grid_columnconfigure(1, weight=1) self.tabview_config.tab("Parameter").grid_columnconfigure(1, weight=1) self.tabview_config._segmented_button.configure(font=customtkinter.CTkFont(family=self.parent.FONT_FAMILY)) + self.tabview_config._segmented_button.grid(sticky="W") # tab UI ## slider transparency @@ -748,9 +749,11 @@ class ToplevelWindowConfig(customtkinter.CTkToplevel): # main window self.parent.checkbox_translation.configure(font=customtkinter.CTkFont(family=choice)) + self.parent.checkbox_transcription.configure(font=customtkinter.CTkFont(family=choice)) self.parent.checkbox_foreground.configure(font=customtkinter.CTkFont(family=choice)) self.parent.textbox_message_log.configure(font=customtkinter.CTkFont(family=choice)) self.parent.entry_message_box.configure(font=customtkinter.CTkFont(family=choice)) + self.parent.tabview_logs._segmented_button.configure(font=customtkinter.CTkFont(family=choice)) # window information try: