Skip to content

Commit

Permalink
Fix for Burn Again button not becoming active
Browse files Browse the repository at this point in the history
  • Loading branch information
noisymime committed Jan 29, 2019
1 parent 9c9d43e commit 85495d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ function uploadFW()
spinner.classList.add('fa-check');

//Re-enable the re-burn button
reinstallButton.disabled = true;
reinstallButton.disabled = false;
});

ipcRenderer.on("upload percent", (event, percent) => {
Expand All @@ -247,7 +247,7 @@ function uploadFW()
spinner.classList.remove('fa-spinner');
spinner.classList.add('fa-times');

reinstallButton.disabled = true;
reinstallButton.disabled = false;
});


Expand Down

0 comments on commit 85495d2

Please sign in to comment.