Skip to content

Commit 472023a

Browse files
committed
Update
1 parent 6d2c86a commit 472023a

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

archinstall/lib/applications/application_menu.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,10 @@ def _define_menu_options(self) -> list[MenuItem]:
4545

4646
def _prev_bluetooth(self, item: MenuItem) -> str | None:
4747
if item.value is not None:
48-
output = 'Bluetooth '
49-
output += tr('Enabled') if item.value else tr('Disabled')
48+
bluetooth_config: BluetoothConfiguration = item.value
49+
50+
output = 'Bluetooth: '
51+
output += tr('Enabled') if bluetooth_config.enabled else tr('Disabled')
5052
return output
5153
return None
5254

archinstall/lib/global_menu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def _get_menu_options(self) -> list[MenuItem]:
139139
action=self._select_applications,
140140
value=[],
141141
preview_action=self._prev_applications,
142-
key='app_config',
142+
key='application_config',
143143
),
144144
MenuItem(
145145
text=tr('Kernels'),

0 commit comments

Comments
 (0)