diff options
| author | OmniTroid <davidskoland@gmail.com> | 2017-05-21 21:44:41 +0200 |
|---|---|---|
| committer | OmniTroid <davidskoland@gmail.com> | 2017-05-21 21:44:41 +0200 |
| commit | b30131a922290da9e9f83d09e0ee33bcfb29db30 (patch) | |
| tree | d2608c08709b5d245c9edb14ebe0cf84adf88dcd /aomovie.cpp | |
| parent | 1e0531a3d34372b765315898bcb3a8855e1a2c8c (diff) | |
fixed a code error and renamed flipped_movie
Diffstat (limited to 'aomovie.cpp')
| -rw-r--r-- | aomovie.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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))); } |
