aboutsummaryrefslogtreecommitdiff
path: root/video_thread.py
diff options
context:
space:
mode:
authorBrianna2017-06-23 07:12:40 -0400
committerGitHub2017-06-23 07:12:40 -0400
commit7d4fb7843849f8a90de13c1a1cb93ca9428fd3b1 (patch)
treed8294bae70979f1134410f7794ca74a395f125ab /video_thread.py
parent3c903794e3588560f2b9d342214009d55a675d5a (diff)
parent8c9914850e9987d4f05e8b88dedb058ffbb4f53f (diff)
Merge branch 'feature-newgui' into newgui-commandline
Diffstat (limited to 'video_thread.py')
-rw-r--r--video_thread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/video_thread.py b/video_thread.py
index e6c6531..265feee 100644
--- a/video_thread.py
+++ b/video_thread.py
@@ -68,7 +68,7 @@ class Worker(QtCore.QObject):
def previewDispatch(self):
background = Image.new("RGBA", (1920, 1080), (0, 0, 0, 0))
background.paste(Image.open(os.path.join(
- os.path.dirname(os.path.realpath(__file__)), "background.png")))
+ self.core.wd, "background.png")))
background = background.resize((self.width, self.height))
while not self.stopped: