From 298d8e2ef42eb2c60f1a2c24cf1aeb131dcded09 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 26 Apr 2013 00:13:17 +0300 Subject: Add mod key for chat (left shift) New action: mod key + right click - close current whisper. --- src/gui/chatwindow.cpp | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'src/gui/chatwindow.cpp') diff --git a/src/gui/chatwindow.cpp b/src/gui/chatwindow.cpp index 2892bb842..cde943c68 100644 --- a/src/gui/chatwindow.cpp +++ b/src/gui/chatwindow.cpp @@ -746,9 +746,19 @@ void ChatWindow::mousePressed(gcn::MouseEvent &event) Tab *const tab = mChatTabs->getSelectedTab(); if (tab) { - ChatTab *const cTab = dynamic_cast(tab); - if (cTab) - viewport->showChatPopup(cTab); + if (inputManager.isActionActive(static_cast( + Input::KEY_CHAT_MOD))) + { + ChatTab *const wTab = dynamic_cast(tab); + if (wTab) + wTab->handleCommand("close", ""); + } + else + { + ChatTab *const cTab = dynamic_cast(tab); + if (cTab) + viewport->showChatPopup(cTab); + } } } } -- cgit v1.2.3-70-g09d2