summaryrefslogtreecommitdiff
path: root/voctogui/lib/videopreviews.py
diff options
context:
space:
mode:
authorMaZderMind <git@mazdermind.de>2016-01-30 16:18:21 +0100
committerMaZderMind <git@mazdermind.de>2016-01-30 16:18:21 +0100
commit3f24beb85790027883b33f678cc0d12a353e35ed (patch)
treecb105b4a386e55b5b860ab6bfc2797ea5899aafb /voctogui/lib/videopreviews.py
parent542f76422f9cca033803203f47b47c11aa3d2305 (diff)
force preview-display-scaler to preview-size in x-mode, fixes #53
Diffstat (limited to 'voctogui/lib/videopreviews.py')
-rw-r--r--voctogui/lib/videopreviews.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/voctogui/lib/videopreviews.py b/voctogui/lib/videopreviews.py
index d80541f..fe41aea 100644
--- a/voctogui/lib/videopreviews.py
+++ b/voctogui/lib/videopreviews.py
@@ -52,7 +52,7 @@ class VideoPreviewsController(object):
video.set_size_request(width, height)
drawing_area.pack_start(preview, fill=False, expand=False, padding=0)
- player = VideoDisplay(video, port=13000 + idx)
+ player = VideoDisplay(video, port=13000 + idx, width=width, height=height)
uibuilder.find_widget_recursive(preview, 'label').set_label(source)
btn_a = uibuilder.find_widget_recursive(preview, 'btn_a')