We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c14e04a commit ca0ae9fCopy full SHA for ca0ae9f
1 file changed
openandroidinstaller/openandroidinstaller.py
@@ -115,7 +115,7 @@ def check_bootloader_unlocked(e):
115
self.state.num_total_steps = len(self.state.steps)
116
117
self.bootloader_checkbox = Checkbox(
118
- label="Bootlaoder is already unlocked.", on_change=check_bootloader_unlocked
+ label="Bootlaoder is already unlocked.", on_change=check_bootloader_unlocked, disabled=True
119
)
120
121
# build up the main view
@@ -211,6 +211,7 @@ def search_devices(self, e):
211
if device_name:
212
self.config_found_box.value = True
213
self.continue_button.disabled = False
214
+ self.bootloader_checkbox.disabled = False
215
# overwrite the text field with the real name from the config
216
self.device_name.value = f"{device_name} (code: {device_code})"
217
else:
0 commit comments