diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-01-27 19:49:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-01-27 19:49:56 +0300 |
commit | dccf40b1e9168e5341937f35cc8c9bfa1bee433f (patch) | |
tree | 6e8ee1169e0b63e65b358decae05145fe4f8217e /src/actions/actions.cpp | |
parent | e05913dbd84ab444dcf41fcc00bf6aa5470d79fe (diff) | |
download | plus-dccf40b1e9168e5341937f35cc8c9bfa1bee433f.tar.gz plus-dccf40b1e9168e5341937f35cc8c9bfa1bee433f.tar.bz2 plus-dccf40b1e9168e5341937f35cc8c9bfa1bee433f.tar.xz plus-dccf40b1e9168e5341937f35cc8c9bfa1bee433f.zip |
Remove popup action "copy bar to chat"
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r-- | src/actions/actions.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index a8a6e3c95..169727b2a 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -1709,4 +1709,14 @@ impHandler0(resetGameModifiers) return true; } +impHandler(barToChat) +{ + if (chatWindow) + { + chatWindow->addInputText(event.args); + return true; + } + return false; +} + } // namespace Actions |