aboutsummaryrefslogtreecommitdiff
path: root/preview_thread.py
diff options
context:
space:
mode:
authortassaron2017-06-03 21:01:18 -0400
committertassaron2017-06-03 21:01:18 -0400
commit5480b20d407805125f2c26acba06faec5a7a9c7c (patch)
treec492ec08bfeb9854dab8c4cf9dbda571418df97e /preview_thread.py
parent825b7af6e30deaf85646ce93507d8cb5a0b426ae (diff)
parent5b78a26d8069e48ad5ba88f457b563620be72173 (diff)
Merge branch 'feature-newgui' of https://github.com/IamDH4/audio-visualizer-python into component-backgrounds
Diffstat (limited to 'preview_thread.py')
-rw-r--r--preview_thread.py2
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)