Skip to content

Commit

Permalink
Fix double-add of beep
Browse files Browse the repository at this point in the history
  • Loading branch information
jramboz committed Jun 19, 2024
1 parent 1437dbb commit a680c43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def _upload_next_file(self):

self.display.fileProgressBar.setValue(0)
self.display.set_file_size(os.path.getsize(file))
worker = Worker(self.sc.write_files_to_saber, [file])
worker = Worker(self.sc.write_files_to_saber, [file], add_beep=False)
worker.signals.progress.connect(self.display.fileProgressBar.setValue)
worker.signals.finished.connect(self._finished_callback)

Expand Down

0 comments on commit a680c43

Please sign in to comment.