Allow to play in-app large videos.

This commit is contained in:
John Preston 2020-04-13 15:13:11 +04:00
parent 15b19f8565
commit 4f8ea4c807
1 changed files with 9 additions and 4 deletions

View File

@ -267,8 +267,10 @@ void Gif::draw(Painter &p, const QRect &r, TextSelection selection, crl::time ms
const auto selected = (selection == FullSelection);
const auto autoPaused = App::wnd()->sessionController()->isGifPausedAtLeastFor(Window::GifPauseReason::Any);
const auto cornerDownload = downloadInCorner();
const auto canBePlayed = _data->canBePlayed() && CanPlayInline(_data);
const auto autoplay = autoplayEnabled() && canBePlayed;
const auto canBePlayed = _data->canBePlayed();
const auto autoplay = autoplayEnabled()
&& canBePlayed
&& CanPlayInline(_data);
const auto activeRoundPlaying = activeRoundStreamed();
const auto startPlay = autoplay
&& !_streamed
@ -871,8 +873,11 @@ void Gif::drawGrouped(
const auto autoPaused = App::wnd()->sessionController()->isGifPausedAtLeastFor(Window::GifPauseReason::Any);
const auto fullFeatured = fullFeaturedGrouped(sides);
const auto cornerDownload = fullFeatured && downloadInCorner();
const auto canBePlayed = _data->canBePlayed() && CanPlayInline(_data);;
const auto autoplay = fullFeatured && autoplayEnabled() && canBePlayed;
const auto canBePlayed = _data->canBePlayed();
const auto autoplay = fullFeatured
&& autoplayEnabled()
&& canBePlayed
&& CanPlayInline(_data);
const auto startPlay = autoplay && !_streamed;
if (startPlay) {
const_cast<Gif*>(this)->playAnimation(true);