Fix closing of fullscreen GIFs by click.

This commit is contained in:
John Preston 2020-02-24 15:31:28 +04:00
parent c3463dec63
commit 8e222d3501
1 changed files with 1 additions and 1 deletions

View File

@ -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);