From e72e9302b6941a152414c29bc063b69dafca0893 Mon Sep 17 00:00:00 2001 From: misyaguziya Date: Sat, 3 Jun 2023 01:34:00 +0900 Subject: [PATCH] =?UTF-8?q?information=5Fwindow=E3=81=8C=E5=AD=98=E5=9C=A8?= =?UTF-8?q?=E3=81=97=E3=81=AA=E3=81=84=E5=A0=B4=E5=90=88=E3=81=AE=E5=87=A6?= =?UTF-8?q?=E7=90=86=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VRCT.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/VRCT.py b/VRCT.py index b514ac90..793a4c02 100644 --- a/VRCT.py +++ b/VRCT.py @@ -503,7 +503,10 @@ class ToplevelWindowConfig(customtkinter.CTkToplevel): self.parent.checkbox_foreground.configure(font=customtkinter.CTkFont(family=FONT_FAMILY)) self.parent.textbox_message_log.configure(font=customtkinter.CTkFont(family=FONT_FAMILY)) self.parent.entry_message_box.configure(font=customtkinter.CTkFont(family=FONT_FAMILY)) - self.parent.information_window.textbox_information.configure(font=customtkinter.CTkFont(family=FONT_FAMILY)) + try: + self.parent.information_window.textbox_information.configure(font=customtkinter.CTkFont(family=FONT_FAMILY)) + except: + pass self.tabview_config._segmented_button.configure(font=customtkinter.CTkFont(family=FONT_FAMILY)) self.label_translator.configure(font=customtkinter.CTkFont(family=FONT_FAMILY)) self.optionmenu_translator.configure(font=customtkinter.CTkFont(family=FONT_FAMILY))