use fillobj instead of get_video to complete all fields

This commit is contained in:
Romain Bignon 2013-04-27 11:51:13 +02:00
commit 9018e6aedb

View file

@ -66,7 +66,7 @@ class MiniVideo(QFrame):
def mousePressEvent(self, event):
QFrame.mousePressEvent(self, event)
video = self.backend.get_video(self.video.id)
video = self.backend.fillobj(self.video)
if video:
video_widget = Video(video, self)
video_widget.show()