diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-09-02 18:26:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-09-02 18:26:22 +0300 |
commit | f117a2b94fcfd67d05652ab8a89cf8d7559b96a9 (patch) | |
tree | ed2027d407a7c5bbfe44ed4b18f854ac5f473b05 /src/gui/setup_players.cpp | |
parent | b17d7d87918b76323e08c0a5c09abd8fa1f3ed71 (diff) | |
download | plus-f117a2b94fcfd67d05652ab8a89cf8d7559b96a9.tar.gz plus-f117a2b94fcfd67d05652ab8a89cf8d7559b96a9.tar.bz2 plus-f117a2b94fcfd67d05652ab8a89cf8d7559b96a9.tar.xz plus-f117a2b94fcfd67d05652ab8a89cf8d7559b96a9.zip |
Add option to disable self heal with mouse click.
Diffstat (limited to 'src/gui/setup_players.cpp')
-rw-r--r-- | src/gui/setup_players.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index 78c77f6f1..670fc3635 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -78,6 +78,9 @@ Setup_Players::Setup_Players() new SetupItemCheckBox(_("Show ip addresses on screenshots"), "", "showip", this, "showipEvent"); + new SetupItemCheckBox(_("Allow self heal with mouse click"), "", + "selfMouseHeal", this, "selfMouseHealEvent"); + setDimension(gcn::Rectangle(0, 0, 550, 350)); } |