mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-24 00:35:26 +03:00
Merge pull request #2328 from haslinghuis/fix_exit_dfu
Disable Exit Dfu Mode and Load Firmware buttons while flashing
This commit is contained in:
commit
7a87426adb
1 changed files with 3 additions and 1 deletions
|
@ -1021,7 +1021,7 @@ TABS.firmware_flasher.initialize = function (callback) {
|
|||
});
|
||||
|
||||
portPickerElement.change(function () {
|
||||
if ($('option:selected', this).data().isDFU) {
|
||||
if ($('option:selected', this).data().isDFU && !GUI.connect_lock) {
|
||||
exitDfuElement.removeClass('disabled');
|
||||
} else {
|
||||
exitDfuElement.addClass('disabled');
|
||||
|
@ -1096,6 +1096,8 @@ TABS.firmware_flasher.initialize = function (callback) {
|
|||
|
||||
function startFlashing() {
|
||||
exitDfuElement.addClass('disabled');
|
||||
$("a.load_remote_file").addClass('disabled');
|
||||
$("a.load_file").addClass('disabled');
|
||||
if (!GUI.connect_lock) { // button disabled while flashing is in progress
|
||||
if (self.parsed_hex) {
|
||||
try {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue