diff options
Diffstat (limited to 'src/actions')
-rw-r--r-- | src/actions/chat.cpp | 11 | ||||
-rw-r--r-- | src/actions/chat.h | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/actions/chat.cpp b/src/actions/chat.cpp index 5b70c2085..9895d8388 100644 --- a/src/actions/chat.cpp +++ b/src/actions/chat.cpp @@ -112,6 +112,17 @@ impHandler0(closeChatTab) return false; } +impHandler0(closeAllChatTabs) +{ + if (chatWindow) + { + chatWindow->removeAllWhispers(); + chatWindow->saveState(); + return true; + } + return false; +} + impHandler0(scrollChatUp) { if (chatWindow && chatWindow->isWindowVisible()) diff --git a/src/actions/chat.h b/src/actions/chat.h index ed7ef97ed..bdb62e209 100644 --- a/src/actions/chat.h +++ b/src/actions/chat.h @@ -31,6 +31,7 @@ namespace Actions decHandler(prevChatTab); decHandler(nextChatTab); decHandler(closeChatTab); + decHandler(closeAllChatTabs); decHandler(scrollChatUp); decHandler(scrollChatDown); } // namespace Actions |