From 0d5699dd134818a9f064033862c5268166b5a816 Mon Sep 17 00:00:00 2001 From: aunsane Date: Mon, 27 Feb 2017 23:38:10 +0300 Subject: Tox: revert previous chages related with #698 --- protocols/Tox/src/tox_messages.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'protocols/Tox') 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 -- cgit v1.2.3