diff options
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r-- | src/actions/commands.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index dbf3ab3d4..779d09dce 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -574,4 +574,16 @@ impHandler(execute) return true; } +impHandler(enableHighlight) +{ + if (event.tab) + { + event.tab->setAllowHighlight(true); + if (chatWindow) + chatWindow->saveState(); + return true; + } + return false; +} + } // namespace Actions |