diff options
| -rw-r--r-- | src/core.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core.py b/src/core.py index a3757e6..42fd1c3 100644 --- a/src/core.py +++ b/src/core.py @@ -432,12 +432,12 @@ class Core: loader, audioFile, outputPath, self.selectedComponents ) videoWorker.moveToThread(self.videoThread) - videoWorker.videoCreated.connect(self.videoCreated) + videoWorker.videoCreated.connect(self.stopVideoThread) self.videoThread.start() return videoWorker - def videoCreated(self): + def stopVideoThread(self): self.videoThread.quit() self.videoThread.wait() |
