From 6f7b3b5f7cb72d09b2b86bd58b2e526515739590 Mon Sep 17 00:00:00 2001
From: tassaron
Date: Fri, 29 Apr 2022 12:59:18 -0400
Subject: rename videoCreated method to stopVideoThread
---
src/core.py | 4 ++--
1 file 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()
--
cgit v1.2.3
e for responsive rendering -->
| Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|