From c2a37057f16be29f1e6df38713a41ca20a7132c5 Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Fri, 5 Jan 2024 08:40:11 +0900 Subject: [PATCH] =?UTF-8?q?[Update]=20Main=20Window:=20=E3=83=A1=E3=83=83?= =?UTF-8?q?=E3=82=BB=E3=83=BC=E3=82=B8=E5=85=A5=E5=8A=9B=E6=AC=84=E3=81=A7?= =?UTF-8?q?=E3=80=81Shift+Enter=E3=82=AD=E3=83=BC=E3=82=92=E6=8A=BC?= =?UTF-8?q?=E3=81=97=E3=81=9F=E9=9A=9B=E3=81=AB=E9=80=81=E4=BF=A1=E3=81=9B?= =?UTF-8?q?=E3=81=9A=E3=80=81=E3=81=9F=E3=81=A0=E6=94=B9=E8=A1=8C=E3=81=99?= =?UTF-8?q?=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=E3=80=82=20=E2=80=BBVRC?= =?UTF-8?q?=E4=B8=8A=E3=81=A7=E3=81=AF=E6=94=B9=E8=A1=8C=E3=81=AF=E5=89=8A?= =?UTF-8?q?=E9=99=A4=E3=81=95=E3=82=8C=E3=82=8B=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view.py | 1 + 1 file changed, 1 insertion(+) diff --git a/view.py b/view.py index 3381917c..01375114 100644 --- a/view.py +++ b/view.py @@ -504,6 +504,7 @@ class View(): return "break" # For deleting the next line that will be inserted when the Enter key is pressed. entry_message_box = getattr(vrct_gui, "entry_message_box") + entry_message_box.bind("", lambda _e: None) # This is to prevent message sending on Shift + Enter key press and just add a new line. entry_message_box.bind("", adjustedMessageBoxReturnFunction) entry_message_box.bind("", main_window_registers.get("message_box_bind_Any_KeyPress"))