From 2d9228034d49289ed9b3ef751dda4fb18f814025 Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Sun, 7 Jan 2024 04:57:08 +0900 Subject: [PATCH] =?UTF-8?q?[bugfix]=20Config=20Window:=20Send=20Message=20?= =?UTF-8?q?Button.=20=E9=81=B8=E6=8A=9E=E9=A0=85=E7=9B=AE=E5=A4=89?= =?UTF-8?q?=E6=9B=B4=E6=99=82=EF=BC=88=E9=9D=9E=E8=A1=A8=E7=A4=BA=E3=80=81?= =?UTF-8?q?=E8=A1=A8=E7=A4=BA=EF=BC=89=E3=81=AB=E3=83=A1=E3=82=A4=E3=83=B3?= =?UTF-8?q?=E7=94=BB=E9=9D=A2=E3=81=AE=E3=82=AB=E3=83=90=E3=83=BC=E3=81=8C?= =?UTF-8?q?=E5=89=8D=E3=81=AB=E5=87=BA=E3=81=A6=E3=81=8F=E3=82=8B=E3=83=90?= =?UTF-8?q?=E3=82=B0=E3=81=AE=E4=BF=AE=E6=AD=A3=E3=80=82=20=E9=81=B8?= =?UTF-8?q?=E6=8A=9E=E6=99=82=E3=81=AB=E9=81=85=E5=BB=B6=E3=81=95=E3=81=9B?= =?UTF-8?q?=E3=81=A6Config=20Window=E3=81=AElift()=E3=82=92=E8=A1=8C?= =?UTF-8?q?=E3=81=A3=E3=81=A6=E3=81=84=E3=82=8B=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/view.py b/view.py index 1f6d75bb..eb0f2665 100644 --- a/view.py +++ b/view.py @@ -1159,8 +1159,10 @@ class View(): match (status): case "hide": vrct_gui.main_send_message_button_container.grid_remove() + vrct_gui.config_window.after(200, vrct_gui.config_window.lift) case "show" | "show_and_disable_enter_key": vrct_gui.main_send_message_button_container.grid() + vrct_gui.config_window.after(200, vrct_gui.config_window.lift) # Function def _adjustUiSizeAndRestart(self):