From bc63d9fe53ffb64edb9b860349df15d32dac09cc Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 2 Sep 2019 15:24:51 +0300 Subject: [PATCH] Fix check display in background box. --- Telegram/SourceFiles/boxes/background_box.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/boxes/background_box.cpp b/Telegram/SourceFiles/boxes/background_box.cpp index 20c245e96..4818dcb80 100644 --- a/Telegram/SourceFiles/boxes/background_box.cpp +++ b/Telegram/SourceFiles/boxes/background_box.cpp @@ -329,7 +329,7 @@ void BackgroundBox::Inner::paintPaper( if (paper.data.id() == Window::Theme::Background()->id()) { const auto checkLeft = x + st::backgroundSize.width() - st::overviewCheckSkip - st::overviewCheck.size; const auto checkTop = y + st::backgroundSize.height() - st::overviewCheckSkip - st::overviewCheck.size; - _check->paint(p, crl::now(), checkLeft, checkTop, width()); + _check->paint(p, checkLeft, checkTop, width()); } else if (Data::IsCloudWallPaper(paper.data) && !Data::IsDefaultWallPaper(paper.data) && over.has_value()