aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortassaron2017-07-25 22:14:34 -0400
committertassaron2017-07-25 22:14:34 -0400
commit4329b0e947471ced7ca0b3460a5f40e2703117e9 (patch)
tree7e0f24f9a8cfaafcc5233766c7c522b038a0a2ff /src
parent03a36d429761c169e23ae21d816a383fa73c0277 (diff)
don't]] always trigger error()
Diffstat (limited to 'src')
-rw-r--r--src/video_thread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_thread.py b/src/video_thread.py
index 48f3729..c5a3c09 100644
--- a/src/video_thread.py
+++ b/src/video_thread.py
@@ -164,7 +164,7 @@ class Worker(QtCore.QObject):
pass
compProps = comp.properties()
- if 'error' in compProps or comp.error() is not None:
+ if 'error' in compProps or comp._lockedError is not None:
self.cancel()
self.canceled = True
canceledByComponent = True