From b30131a922290da9e9f83d09e0ee33bcfb29db30 Mon Sep 17 00:00:00 2001 From: OmniTroid Date: Sun, 21 May 2017 21:44:41 +0200 Subject: fixed a code error and renamed flipped_movie --- aomovie.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'aomovie.cpp') diff --git a/aomovie.cpp b/aomovie.cpp index 57147041..90c37010 100644 --- a/aomovie.cpp +++ b/aomovie.cpp @@ -10,6 +10,8 @@ AOMovie::AOMovie(QWidget *p_parent, AOApplication *p_ao_app) : QLabel(p_parent) m_movie = new QMovie(); + this->setMovie(m_movie); + connect(m_movie, SIGNAL(frameChanged(int)), this, SLOT(frame_change(int))); } -- cgit