1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-12 03:33:00 +00:00

dialog:: improvements to list dialogs

This commit is contained in:
Zeno Rogue
2022-10-21 12:47:20 +02:00
parent 06f450af22
commit 29ba4138a4
6 changed files with 16 additions and 21 deletions

View File

@@ -2988,8 +2988,8 @@ EX void find_setting() {
dialog::display();
keyhandler = [] (int sym, int uni) {
dialog::handleNavigation(sym, uni);
if(dialog::editInfix(uni)) ;
dialog::handleNavigation(sym, uni);
if(dialog::editInfix(uni)) dialog::list_skip = 0;
else if(doexiton(sym, uni)) popScreen();
};
}