diff options
| author | DH4 | 2017-06-03 19:29:25 -0500 |
|---|---|---|
| committer | DH4 | 2017-06-03 19:29:25 -0500 |
| commit | e6d119769f825a523bc96c3bfe1c87015be54c9f (patch) | |
| tree | 982ebb8033bb59f10eb88b4170bb745e0246d30e /preview_thread.py | |
| parent | a3557cbc4f192b520f7fccd849ebf4f70937cfee (diff) | |
Render order reversed to match component list.
Diffstat (limited to 'preview_thread.py')
| -rw-r--r-- | preview_thread.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/preview_thread.py b/preview_thread.py index b20e9a1..63d1ac5 100644 --- a/preview_thread.py +++ b/preview_thread.py @@ -56,7 +56,7 @@ class Worker(QtCore.QObject): frame.paste(im) components = nextPreviewInformation["components"] - for component in components: + for component in reversed(components): newFrame = Image.alpha_composite(frame,component.previewRender(self)) frame = Image.alpha_composite(frame,newFrame) |
