🐛[bugfix] Controller : ENABLE_SEND_MESSAGE_TO_VRCがFalseの場合にタイピングが送信されないように修正

This commit is contained in:
misyaguziya
2023-10-15 03:38:06 +09:00
parent 033cece3a7
commit 39a63cb0e2

View File

@@ -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():