Force animation unload in inline results.

Fixes #7335.
This commit is contained in:
John Preston 2020-03-16 17:38:36 +04:00
parent 9823615a84
commit 7b51383b3b
5 changed files with 20 additions and 4 deletions

View File

@ -442,6 +442,7 @@ void GifsListWidget::processPanelHideFinished() {
if (const auto result = item->getResult()) {
result->unload();
}
item->unloadAnimation();
};
// Preserve panel state through visibility toggles.
//clearInlineRows(false);

View File

@ -357,6 +357,11 @@ void Gif::radialAnimationCallback(crl::time now) const {
}
}
void Gif::unloadAnimation() {
_gif.reset();
getShownDocument()->unload();
}
void Gif::clipCallback(Media::Clip::Notification notification) {
using namespace Media::Clip;
switch (notification) {
@ -370,8 +375,7 @@ void Gif::clipCallback(Media::Clip::Notification notification) {
auto frame = countFrameSize();
_gif->start(frame.width(), frame.height(), _width, height, ImageRoundRadius::None, RectPart::None);
} else if (_gif->autoPausedGif() && !context()->inlineItemVisible(this)) {
_gif.reset();
getShownDocument()->unload();
unloadAnimation();
}
}
@ -1429,6 +1433,11 @@ void Game::radialAnimationCallback(crl::time now) const {
}
}
void Game::unloadAnimation() {
_gif.reset();
getResultDocument()->unload();
}
void Game::clipCallback(Media::Clip::Notification notification) {
using namespace Media::Clip;
switch (notification) {
@ -1440,8 +1449,7 @@ void Game::clipCallback(Media::Clip::Notification notification) {
} else if (_gif->ready() && !_gif->started()) {
_gif->start(_frameSize.width(), _frameSize.height(), st::inlineThumbSize, st::inlineThumbSize, ImageRoundRadius::None, RectPart::None);
} else if (_gif->autoPausedGif() && !context()->inlineItemVisible(this)) {
_gif.reset();
getResultDocument()->unload();
unloadAnimation();
}
}

View File

@ -75,6 +75,8 @@ public:
int resizeGetHeight(int width) override;
void unloadAnimation() override;
private:
QSize countFrameSize() const;
@ -370,6 +372,8 @@ public:
QPoint point,
StateRequest request) const override;
void unloadAnimation() override;
private:
void countFrameSize();

View File

@ -80,6 +80,8 @@ public:
PhotoData *getPreviewPhoto() const;
virtual void preload() const;
virtual void unloadAnimation() {
}
void update() const;
void layoutChanged();

View File

@ -304,6 +304,7 @@ void Inner::hideFinish(bool completely) {
if (const auto result = item->getResult()) {
result->unload();
}
item->unloadAnimation();
};
clearInlineRows(false);
for (const auto &[result, layout] : _inlineLayouts) {