Skip to content

Commit

Permalink
temporary patch no internet gui reset
Browse files Browse the repository at this point in the history
  • Loading branch information
TNTwise committed Aug 31, 2024
1 parent 710be00 commit da7dc5b
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions src/ui/ProcessTab.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,18 +162,16 @@ def run(
backend=backend,
)
# self.ffmpegWriteThread()
if os.path.exists(self.modelFile) or os.path.isfile(self.modelFile):


writeThread = Thread(
target=lambda: self.renderToPipeThread(
method=method, backend=backend, interpolateTimes=interpolationTimes
)
writeThread = Thread(
target=lambda: self.renderToPipeThread(
method=method, backend=backend, interpolateTimes=interpolationTimes
)
writeThread.start()
self.startGUIUpdate()
else:
self.parent.onRenderCompletion()
# stop render process here
)
writeThread.start()
self.startGUIUpdate()


def startGUIUpdate(self):
self.workerThread = UpdateGUIThread(
Expand Down

0 comments on commit da7dc5b

Please sign in to comment.