diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2010-02-19 05:28:49 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2010-02-19 05:28:49 (GMT) |
commit | 91e69bbc1f390e4da209281d44f734b3d63e8e0f (patch) | |
tree | 703fcdc8ab346af758c4d5557d2fe8f58f1889b3 /src | |
parent | 4d035b669d9f790c385b261c7e78b547d4c4eedb (diff) | |
download | Qt-91e69bbc1f390e4da209281d44f734b3d63e8e0f.zip Qt-91e69bbc1f390e4da209281d44f734b3d63e8e0f.tar.gz Qt-91e69bbc1f390e4da209281d44f734b3d63e8e0f.tar.bz2 |
Fix "AnimatedImage ignores Anchors setting"
Task-number: QTBUG-8343
Diffstat (limited to 'src')
-rw-r--r-- | src/declarative/graphicsitems/qmlgraphicsanimatedimage.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/declarative/graphicsitems/qmlgraphicsanimatedimage.cpp b/src/declarative/graphicsitems/qmlgraphicsanimatedimage.cpp index 3434635..697be15 100644 --- a/src/declarative/graphicsitems/qmlgraphicsanimatedimage.cpp +++ b/src/declarative/graphicsitems/qmlgraphicsanimatedimage.cpp @@ -295,6 +295,7 @@ void QmlGraphicsAnimatedImage::playingStatusChanged() void QmlGraphicsAnimatedImage::componentComplete() { Q_D(QmlGraphicsAnimatedImage); + QmlGraphicsImage::componentComplete(); if (!d->reply) { setCurrentFrame(d->preset_currentframe); d->preset_currentframe = 0; |