mirror of https://github.com/procxx/kepka.git
Fix crash in lottie animations.
This commit is contained in:
parent
a8d3951116
commit
65b949d36b
|
@ -173,7 +173,7 @@ void FrameRendererObject::queueGenerateFrames() {
|
|||
|
||||
SharedState::SharedState(const JsonObject &definition)
|
||||
: _scene(definition) {
|
||||
if (_scene.endFrame() > _scene.startFrame()) {
|
||||
if (_scene.isValid()) {
|
||||
auto cover = QImage();
|
||||
renderFrame(cover, FrameRequest::NonStrict(), 0);
|
||||
init(std::move(cover));
|
||||
|
@ -319,6 +319,9 @@ not_null<const Frame*> SharedState::getFrame(int index) const {
|
|||
}
|
||||
|
||||
Information SharedState::information() const {
|
||||
if (!_scene.isValid()) {
|
||||
return {};
|
||||
}
|
||||
auto result = Information();
|
||||
result.frameRate = _scene.frameRate();
|
||||
result.size = QSize(_scene.width(), _scene.height());
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit ddccffed3c87ce6763dd73a6453b1edfb1389743
|
||||
Subproject commit 6971c146829b534ec7d9b7cdb6fe4b8f26fe344c
|
Loading…
Reference in New Issue