mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-16 14:17:12 +02:00
Fix closing of fullscreen GIFs by click.
This commit is contained in:
parent
c3463dec63
commit
8e222d3501
1 changed files with 1 additions and 1 deletions
|
@ -3688,7 +3688,7 @@ void OverlayWidget::updateOver(QPoint pos) {
|
|||
} else if (documentContentShown() && contentRect().contains(pos)) {
|
||||
if ((_doc->isVideoFile() || _doc->isVideoMessage()) && _streamed) {
|
||||
updateOverState(OverVideo);
|
||||
} else if (!_doc->loaded()) {
|
||||
} else if (!_streamed && !_doc->loaded()) {
|
||||
updateOverState(OverIcon);
|
||||
} else if (_over != OverNone) {
|
||||
updateOverState(OverNone);
|
||||
|
|
Loading…
Add table
Reference in a new issue