Skip to content

Commit

Permalink
Merge pull request #199 from martinling/main
Browse files Browse the repository at this point in the history
Fix open button not being re-enabled after stop
  • Loading branch information
miek authored Oct 11, 2024
2 parents b9b5d6b + 7a6e730 commit 674ecbf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1105,6 +1105,7 @@ pub fn stop_operation() -> Result<(), Error> {
ui.stop_button.set_sensitive(false);
ui.scan_button.set_sensitive(true);
ui.save_button.set_sensitive(true);
ui.open_button.set_sensitive(true);
ui.selector.set_sensitive(true);
ui.capture_button.set_sensitive(ui.selector.device_available());
if ui.show_progress.take().is_some() {
Expand Down

0 comments on commit 674ecbf

Please sign in to comment.