From adbfa1eeda1778f9d35d1472615e21757534350c Mon Sep 17 00:00:00 2001 From: Ilya Zhuravlev Date: Wed, 29 Dec 2021 22:39:30 -0500 Subject: [PATCH] firmware_flasher: make sure the checkbox is hidden by default --- src/main/python/firmware_flasher.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/python/firmware_flasher.py b/src/main/python/firmware_flasher.py index 19e369538d..f6c9fefaff 100644 --- a/src/main/python/firmware_flasher.py +++ b/src/main/python/firmware_flasher.py @@ -139,6 +139,7 @@ def __init__(self, main, parent=None): self.btn_flash.clicked.connect(self.on_click_flash) progress_flash.addWidget(self.btn_flash) self.chk_restore_keymap = QCheckBox(main) + self.chk_restore_keymap.hide() self.chk_restore_keymap.setText(tr("Flasher", "Restore current layout after flashing")) self.chk_restore_keymap.setChecked(True) self.addWidget(self.chk_restore_keymap)