mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
fixed hotkey clash in take shot -> hide the player
This commit is contained in:
parent
513af4c7b4
commit
b254776243
@ -426,7 +426,7 @@ void menu() {
|
|||||||
dialog::addBoolItem(XLAT("disable the HUD"), hide_hud, 'h');
|
dialog::addBoolItem(XLAT("disable the HUD"), hide_hud, 'h');
|
||||||
dialog::add_action([] { hide_hud = !hide_hud; });
|
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::add_action([] { mapeditor::drawplayer = !mapeditor::drawplayer; });
|
||||||
|
|
||||||
dialog::addItem(XLAT("customize colors and aura"), 'c');
|
dialog::addItem(XLAT("customize colors and aura"), 'c');
|
||||||
|
Loading…
Reference in New Issue
Block a user