From a59940c592c2d738e1787e56148240b1e9c83848 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Sun, 8 Dec 2013 14:21:39 -0500 Subject: [PATCH] Fix Issue 1273: Typing in Group Chat opens IM Window for other participants Broken logic, my bad. --- indra/newview/llimpanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llimpanel.cpp b/indra/newview/llimpanel.cpp index efdafd28e..abae430f6 100644 --- a/indra/newview/llimpanel.cpp +++ b/indra/newview/llimpanel.cpp @@ -1390,7 +1390,7 @@ void LLFloaterIMPanel::sendTypingState(bool typing) return; // Don't want to send typing indicators to multiple people, potentially too // much network traffic. Only send in person-to-person IMs. - if (mSessionType == P2P_SESSION) return; + if (mSessionType != P2P_SESSION) return; std::string name; gAgent.buildFullname(name);