summaryrefslogtreecommitdiff
path: root/src/commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands.cpp')
-rw-r--r--src/commands.cpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/commands.cpp b/src/commands.cpp
index 41c828840..b2e1e6eee 100644
--- a/src/commands.cpp
+++ b/src/commands.cpp
@@ -251,48 +251,6 @@ static void outStringNormal(ChatTab *const tab,
}
}
-impHandler(toggle)
-{
- if (event.args.empty())
- {
- if (chatWindow && event.tab)
- {
- // TRANSLATORS: message from toggle chat command
- event.tab->chatLog(chatWindow->getReturnTogglesChat() ?
- _("Return toggles chat.") : _("Message closes chat."));
- }
- return true;
- }
-
- switch (parseBoolean(event.args))
- {
- case 1:
- if (event.tab)
- {
- // TRANSLATORS: message from toggle chat command
- event.tab->chatLog(_("Return now toggles chat."));
- }
- if (chatWindow)
- chatWindow->setReturnTogglesChat(true);
- return true;
- case 0:
- if (event.tab)
- {
- // TRANSLATORS: message from toggle chat command
- event.tab->chatLog(_("Message now closes chat."));
- }
- if (chatWindow)
- chatWindow->setReturnTogglesChat(false);
- return true;
- case -1:
- if (event.tab)
- event.tab->chatLog(strprintf(BOOLEAN_OPTIONS, "toggle"));
- return true;
- default:
- return true;
- }
-}
-
impHandler0(present)
{
if (chatWindow)