From fc95597c63166c527f92f9170ccdc67a51f01481 Mon Sep 17 00:00:00 2001
From: Paul ProductEngine <pguslisty@productengine.com>
Date: Wed, 28 Mar 2012 21:19:33 +0300
Subject: [PATCH] MAINT-405 FIXED ([PUBLIC]Ctrl W does not properly close IM
 tabs using tabbed IM in 2.x/3.x)

- Now tabs are closed with Ctrl+W as expected
---
 indra/llui/llmultifloater.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/llui/llmultifloater.cpp b/indra/llui/llmultifloater.cpp
index f3a48835b1e..aa5f577897d 100644
--- a/indra/llui/llmultifloater.cpp
+++ b/indra/llui/llmultifloater.cpp
@@ -349,7 +349,7 @@ void LLMultiFloater::setVisible(BOOL visible)
 
 BOOL LLMultiFloater::handleKeyHere(KEY key, MASK mask)
 {
-	if (key == 'W' && mask == (MASK_CONTROL|MASK_SHIFT))
+	if (key == 'W' && mask == MASK_CONTROL)
 	{
 		LLFloater* floater = getActiveFloater();
 		// is user closeable and is system closeable
-- 
GitLab