1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-17 18:59:59 +00:00

panning enabled in the rug menu

This commit is contained in:
Zeno Rogue 2020-04-19 15:45:02 +02:00
parent cc88c03f5a
commit fcbe13cd5f

View File

@ -1511,6 +1511,7 @@ EX void show() {
dialog::display(); dialog::display();
keyhandler = [] (int sym, int uni) { keyhandler = [] (int sym, int uni) {
handlePanning(sym, uni);
dialog::handleNavigation(sym, uni); dialog::handleNavigation(sym, uni);
if(uni == 'h' || uni == SDLK_F1) gotoHelp(makehelp()); if(uni == 'h' || uni == SDLK_F1) gotoHelp(makehelp());