1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-02 10:48:04 +00:00

Consistently use "space" for the "pop this menu" option in all submenus.

The "pop this menu" option's *text* is still highly variable among all
the different menus, which could make it hard to navigate, but at least
if you're using the keyboard it's now easy to "go back".

Plus, the rogueviz menu incorrectly reported "(v) exit menu" when actually
`v` was already in use by an earlier option. This is now fixed.
This commit is contained in:
Arthur O'Dwyer
2017-10-29 12:04:27 -07:00
parent d3fd02f896
commit dae6b9e3d3
12 changed files with 26 additions and 23 deletions

View File

@@ -656,7 +656,7 @@ namespace netgen {
dialog::addItem(XLAT("synchronize net and map"), 's');
dialog::addItem(XLAT("display the scope"), 't');
dialog::addItem(XLAT("create the model"), 'c');
dialog::addItem(XLAT("back to HyperRogue"), 'q');
dialog::addItem(XLAT("back to HyperRogue"), ' ');
dialog::addItem(XLAT("design the net"), 'd');
dialog::display();