From 050d7c9c13fdcf766511bc2ced5813ef1730478c Mon Sep 17 00:00:00 2001 From: Daniel Girtler Date: Fri, 6 May 2022 22:37:40 +1000 Subject: Fix minor issues (#1132) Co-authored-by: Daniel Girtler --- archinstall/lib/menu/selection_menu.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'archinstall/lib/menu/selection_menu.py') diff --git a/archinstall/lib/menu/selection_menu.py b/archinstall/lib/menu/selection_menu.py index c29373f9..8311344d 100644 --- a/archinstall/lib/menu/selection_menu.py +++ b/archinstall/lib/menu/selection_menu.py @@ -309,8 +309,15 @@ class GeneralMenu: if selection and self.auto_cursor: cursor_pos = menu_options.index(selection) + 1 # before the strip otherwise fails - if cursor_pos >= len(menu_options): - cursor_pos = len(menu_options) - 1 + + # in case the new position lands on a "placeholder" we'll skip them as well + while True: + if cursor_pos >= len(menu_options): + cursor_pos = 0 + if len(menu_options[cursor_pos]) > 0: + break + cursor_pos += 1 + selection = selection.strip() if selection: # if this calls returns false, we exit the menu. We allow for an callback for special processing on realeasing control -- cgit v1.2.3-54-g00ecf