summaryrefslogtreecommitdiff
path: root/protocols/Tox
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Tox')
-rw-r--r--protocols/Tox/src/tox_messages.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/protocols/Tox/src/tox_messages.cpp b/protocols/Tox/src/tox_messages.cpp
index 0cc1e768d3..b1c6ef7d3d 100644
--- a/protocols/Tox/src/tox_messages.cpp
+++ b/protocols/Tox/src/tox_messages.cpp
@@ -181,6 +181,9 @@ void CToxProto::OnTypingChanged(Tox*, uint32_t friendNumber, bool isTyping, void
{
CToxProto *proto = (CToxProto*)arg;
- if (MCONTACT hContact = proto->GetContact(friendNumber) && isTyping)
- CallService(MS_PROTO_CONTACTISTYPING, hContact, (LPARAM)5);
+ if (MCONTACT hContact = proto->GetContact(friendNumber))
+ {
+ int typingStatus = (isTyping ? PROTOTYPE_CONTACTTYPING_INFINITE : PROTOTYPE_CONTACTTYPING_OFF);
+ CallService(MS_PROTO_CONTACTISTYPING, hContact, (LPARAM)typingStatus);
+ }
} \ No newline at end of file