🐛[bugfix] Controller : ENABLE_SEND_MESSAGE_TO_VRCがFalseの場合にタイピングが送信されないように修正
This commit is contained in:
@@ -185,7 +185,10 @@ def messageBoxPressKeyEnter(e):
|
|||||||
sendChatMessage(message)
|
sendChatMessage(message)
|
||||||
|
|
||||||
def messageBoxPressKeyAny(e):
|
def messageBoxPressKeyAny(e):
|
||||||
model.oscStartSendTyping()
|
if config.ENABLE_SEND_MESSAGE_TO_VRC is True:
|
||||||
|
model.oscStartSendTyping()
|
||||||
|
else:
|
||||||
|
model.oscStopSendTyping()
|
||||||
|
|
||||||
# func select languages
|
# func select languages
|
||||||
def initSetLanguageAndCountry():
|
def initSetLanguageAndCountry():
|
||||||
|
|||||||
Reference in New Issue
Block a user