fixed hotkey clash in take shot -> hide the player

This commit is contained in:
Zeno Rogue 2019-02-09 15:07:17 +01:00
parent 513af4c7b4
commit b254776243
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ void menu() {
dialog::addBoolItem(XLAT("disable the HUD"), hide_hud, 'h');
dialog::add_action([] { hide_hud = !hide_hud; });
dialog::addBoolItem(XLAT("hide the player"), !mapeditor::drawplayer, 'p');
dialog::addBoolItem(XLAT("hide the player"), !mapeditor::drawplayer, 'H');
dialog::add_action([] { mapeditor::drawplayer = !mapeditor::drawplayer; });
dialog::addItem(XLAT("customize colors and aura"), 'c');