diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-07-03 16:04:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-07-03 16:04:56 +0300 |
commit | 634149ac7d248d2e078ee9707379a5056d31077e (patch) | |
tree | 59dcf717b69c7f70c832a86aa27b4bf5099a1a68 /src/gui/setup_other.cpp | |
parent | 40db8c31b6d76d9ff6bb54f44a87fb4e73b1f2f6 (diff) | |
download | plus-634149ac7d248d2e078ee9707379a5056d31077e.tar.gz plus-634149ac7d248d2e078ee9707379a5056d31077e.tar.bz2 plus-634149ac7d248d2e078ee9707379a5056d31077e.tar.xz plus-634149ac7d248d2e078ee9707379a5056d31077e.zip |
Move some settings from video tab to other tabs.
Diffstat (limited to 'src/gui/setup_other.cpp')
-rw-r--r-- | src/gui/setup_other.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/gui/setup_other.cpp b/src/gui/setup_other.cpp index 07409ee80..1f5b254a1 100644 --- a/src/gui/setup_other.cpp +++ b/src/gui/setup_other.cpp @@ -123,6 +123,27 @@ Setup_Other::Setup_Other() new SetupItemCheckBox(_("Enable debug log"), "", "debugLog", this, "debugLogEvent"); + new SetupItemCheckBox(_("Draw path"), "", "drawPath", + this, "drawPathEvent"); + + new SetupItemCheckBox(_("Show job"), "", "showJob", + this, "showJobEvent", false); + + new SetupItemCheckBox(_("Log NPC dialogue"), "", "logNpcInGui", + this, "logNpcInGuiEvent"); + + new SetupItemCheckBox(_("Draw hotkeys on map"), "", "drawHotKeys", + this, "drawHotKeysEvent"); + + new SetupItemCheckBox(_("Sync player move"), "", "syncPlayerMove", + this, "syncPlayerMoveEvent"); + + new SetupItemCheckBox(_("Low traffic mode"), "", "lowTraffic", + this, "lowTrafficEvent"); + + new SetupItemCheckBox(_("Hide shield sprite"), "", "hideShield", + this, "hideShieldEvent"); + setDimension(gcn::Rectangle(0, 0, 550, 350)); } |