From b254776243cb6eef65a58fa94bb713e91219ae87 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 9 Feb 2019 15:07:17 +0100 Subject: [PATCH] fixed hotkey clash in take shot -> hide the player --- screenshot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screenshot.cpp b/screenshot.cpp index 7504676e..8501271f 100644 --- a/screenshot.cpp +++ b/screenshot.cpp @@ -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');