aboutsummaryrefslogtreecommitdiff
path: root/src/preview_thread.py
diff options
context:
space:
mode:
authortassaron2017-07-27 17:49:08 -0400
committertassaron2017-07-27 17:49:08 -0400
commitde1324a6a75eb2a9f97d8a6b416077cfc73b2bc9 (patch)
tree2aebc32702f193280f6332a7aa6c3f21e4390ca0 /src/preview_thread.py
parent4329b0e947471ced7ca0b3460a5f40e2703117e9 (diff)
fixed video component eating stdout
+ made height/width into properties to simplify render methods
Diffstat (limited to 'src/preview_thread.py')
-rw-r--r--src/preview_thread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/preview_thread.py b/src/preview_thread.py
index 9917e4b..0a6a856 100644
--- a/src/preview_thread.py
+++ b/src/preview_thread.py
@@ -59,7 +59,7 @@ class Worker(QtCore.QObject):
components = nextPreviewInformation["components"]
for component in reversed(components):
try:
- newFrame = component.previewRender(self)
+ newFrame = component.previewRender()
frame = Image.alpha_composite(
frame, newFrame
)