From fa87946d4cff09598ba76bdb512bf025a66b9eaf Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Thu, 9 May 2024 07:03:15 +0900 Subject: [PATCH] =?UTF-8?q?[bugfix]=20Config=20Window:=20=E8=A8=AD?= =?UTF-8?q?=E5=AE=9A=E9=A0=85=E7=9B=AE=E5=A4=89=E6=9B=B4=E6=99=82=E3=81=AB?= =?UTF-8?q?=E3=80=81=E9=BB=92=E3=82=AB=E3=83=90=E3=83=BC=E3=81=8C=E5=89=8D?= =?UTF-8?q?=E3=81=AB=E5=87=BA=E3=81=A6=E3=81=8D=E3=81=A6=E3=81=97=E3=81=BE?= =?UTF-8?q?=E3=81=86=E3=81=AE=E3=82=92=E7=84=A1=E7=90=86=E3=82=84=E3=82=8A?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E3=80=82=20=E3=83=86=E3=82=AD=E3=82=B9?= =?UTF-8?q?=E3=83=88=E3=83=9C=E3=83=83=E3=82=AF=E3=82=B9=E4=B8=8A=E9=83=A8?= =?UTF-8?q?=E3=80=81=E3=82=B9=E3=83=86=E3=83=BC=E3=82=BF=E3=82=B9=E5=A4=89?= =?UTF-8?q?=E6=9B=B4=E9=96=A2=E6=95=B0setStateOverlaySmallLog=E3=81=A8setS?= =?UTF-8?q?tateVrcMicMuteSync=E5=AE=9F=E8=A1=8C=E6=99=82=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/view.py b/view.py index 9762ed95..939e000a 100644 --- a/view.py +++ b/view.py @@ -1307,6 +1307,8 @@ class View(): self.view_variable.VAR_VRC_MIC_MUTE_SYNC_STATE.set(i18n.t("main_window.state_text_disabled")) vrct_gui.vrc_mic_mute_sync_settings_state_label.configure(text_color=self.settings.main.ctm.TOP_BAR_BUTTON_STATE_TEXT_DISABLED_COLOR) + vrct_gui.config_window.after(200, vrct_gui.config_window.lift) + def setStateOverlaySmallLog(self, state:str): if state == "enabled": self.view_variable.VAR_OVERLAY_SMALL_LOG_STATE.set(i18n.t("main_window.state_text_enabled")) @@ -1315,6 +1317,8 @@ class View(): self.view_variable.VAR_OVERLAY_SMALL_LOG_STATE.set(i18n.t("main_window.state_text_disabled")) vrct_gui.overlay_settings_state_label.configure(text_color=self.settings.main.ctm.TOP_BAR_BUTTON_STATE_TEXT_DISABLED_COLOR) + vrct_gui.config_window.after(200, vrct_gui.config_window.lift) + # Config Window def enableConfigWindowCompactMode(self):