Add "Custom" option to Auto Setup
This commit is contained in:
parent
4a21ade0b4
commit
6a0fd46523
2 changed files with 2 additions and 0 deletions
|
|
@ -83,6 +83,7 @@ PRESETS = {
|
|||
'Partitions 4K Aligned',
|
||||
),
|
||||
},
|
||||
'Custom': {}, # Will remain empty at runtime
|
||||
}
|
||||
|
||||
# Classes
|
||||
|
|
|
|||
|
|
@ -311,6 +311,7 @@ def build_menus(base_menus, title, presets):
|
|||
MENU_PRESETS.add_option('Default')
|
||||
for name in presets:
|
||||
MENU_PRESETS.add_option(name)
|
||||
MENU_PRESETS.add_option('Custom')
|
||||
MENU_PRESETS.add_action('Main Menu')
|
||||
MENU_PRESETS.add_action('Quit')
|
||||
MENU_PRESETS.update()
|
||||
|
|
|
|||
Loading…
Reference in a new issue