File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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' ),
You can’t perform that action at this time.
0 commit comments