This commit changes the order of the main menu. (#4043)
Since in the next NVIDIA update, the kernel choice will have an impact on profiles. The order this way makes it more logical: Bootloader => Kernel => Hw drivers
This commit is contained in:
parent
4e52dc7493
commit
ac984b7622
|
|
@ -92,6 +92,14 @@ class GlobalMenu(AbstractMenu[None]):
|
|||
preview_action=self._prev_bootloader_config,
|
||||
key='bootloader_config',
|
||||
),
|
||||
MenuItem(
|
||||
text=tr('Kernels'),
|
||||
value=['linux'],
|
||||
action=select_kernel,
|
||||
preview_action=self._prev_kernel,
|
||||
mandatory=True,
|
||||
key='kernels',
|
||||
),
|
||||
MenuItem(
|
||||
text=tr('Hostname'),
|
||||
value='archlinux',
|
||||
|
|
@ -118,14 +126,6 @@ class GlobalMenu(AbstractMenu[None]):
|
|||
preview_action=self._prev_applications,
|
||||
key='app_config',
|
||||
),
|
||||
MenuItem(
|
||||
text=tr('Kernels'),
|
||||
value=['linux'],
|
||||
action=select_kernel,
|
||||
preview_action=self._prev_kernel,
|
||||
mandatory=True,
|
||||
key='kernels',
|
||||
),
|
||||
MenuItem(
|
||||
text=tr('Network configuration'),
|
||||
action=ask_to_configure_network,
|
||||
|
|
|
|||
Loading…
Reference in New Issue