Skip to content

Commit

Permalink
fix: bug causing GUI to freeze after procFinished.
Browse files Browse the repository at this point in the history
  • Loading branch information
jswift-stfc committed Apr 13, 2022
1 parent 013a047 commit bcc2663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/widgets/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -1593,7 +1593,7 @@ def procFinished(self):
)
self.error = ""
self.queue = Queue()
if not self.queue.empty():
if self.queue.empty():
if self.warning:
QMessageBox.warning(
self.mainWidget, "GudPy Warning",
Expand Down

0 comments on commit bcc2663

Please sign in to comment.