index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Werner Llácer <wllacer@gmail.com> | 2022-01-18 20:57:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 20:57:30 +0100 |
commit | c776e30191224b3a6cd9d3712576e88b54bf1ca6 (patch) | |
tree | cec2d78219f9c324764f6c7f7715647c4c7e3196 /archinstall/lib/menu/selection_menu.py | |
parent | 3d30a4eb28bd84713571c52622cb88b6458076a5 (diff) |
-rw-r--r-- | archinstall/lib/menu/selection_menu.py | 2 |
diff --git a/archinstall/lib/menu/selection_menu.py b/archinstall/lib/menu/selection_menu.py index fa997473..fe9b4160 100644 --- a/archinstall/lib/menu/selection_menu.py +++ b/archinstall/lib/menu/selection_menu.py @@ -240,7 +240,7 @@ class GlobalMenu: self._process_selection(selection) for key in self._menu_options: sel = self._menu_options[key] - if sel.enabled and sel.has_selection() and key not in archinstall.arguments: + if key not in archinstall.arguments: archinstall.arguments[key] = sel._current_selection def _process_selection(self, selection): |