mirror of https://github.com/procxx/kepka.git
parent
9823615a84
commit
7b51383b3b
|
@ -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);
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
|
@ -80,6 +80,8 @@ public:
|
|||
PhotoData *getPreviewPhoto() const;
|
||||
|
||||
virtual void preload() const;
|
||||
virtual void unloadAnimation() {
|
||||
}
|
||||
|
||||
void update() const;
|
||||
void layoutChanged();
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue