diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-05-12 18:52:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-05-12 18:52:54 +0300 |
commit | e82b08179b74bd8bf54157897ee06626422f72b8 (patch) | |
tree | f1da901d6894ec0dd4c671758766c30c64c354a2 /src/gui/charselectdialog.cpp | |
parent | 3198ea5c33e58c71cdd489c32fcc3c864c2fe6e1 (diff) | |
download | plus-e82b08179b74bd8bf54157897ee06626422f72b8.tar.gz plus-e82b08179b74bd8bf54157897ee06626422f72b8.tar.bz2 plus-e82b08179b74bd8bf54157897ee06626422f72b8.tar.xz plus-e82b08179b74bd8bf54157897ee06626422f72b8.zip |
add double click selection in chat selection dialog.
Diffstat (limited to 'src/gui/charselectdialog.cpp')
-rw-r--r-- | src/gui/charselectdialog.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gui/charselectdialog.cpp b/src/gui/charselectdialog.cpp index 65829662d..0cbac6a68 100644 --- a/src/gui/charselectdialog.cpp +++ b/src/gui/charselectdialog.cpp @@ -222,11 +222,7 @@ void CharSelectDialog::action(const gcn::ActionEvent &event) if (selected >= 0) { - if (eventId == "select") - { - logger->log("select"); - } - else if (eventId == "use") + if (eventId == "use") { use(selected); return; |