From 39a63cb0e2d76cf629ba9f9da8670b412319db8e Mon Sep 17 00:00:00 2001 From: misyaguziya Date: Sun, 15 Oct 2023 03:38:06 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B[bugfix]=20Controller=20:=20ENABLE?= =?UTF-8?q?=5FSEND=5FMESSAGE=5FTO=5FVRC=E3=81=8CFalse=E3=81=AE=E5=A0=B4?= =?UTF-8?q?=E5=90=88=E3=81=AB=E3=82=BF=E3=82=A4=E3=83=94=E3=83=B3=E3=82=B0?= =?UTF-8?q?=E3=81=8C=E9=80=81=E4=BF=A1=E3=81=95=E3=82=8C=E3=81=AA=E3=81=84?= =?UTF-8?q?=E3=82=88=E3=81=86=E3=81=AB=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- controller.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/controller.py b/controller.py index bf8ee183..dab14af3 100644 --- a/controller.py +++ b/controller.py @@ -185,7 +185,10 @@ def messageBoxPressKeyEnter(e): sendChatMessage(message) def messageBoxPressKeyAny(e): - model.oscStartSendTyping() + if config.ENABLE_SEND_MESSAGE_TO_VRC is True: + model.oscStartSendTyping() + else: + model.oscStopSendTyping() # func select languages def initSetLanguageAndCountry():