From 1018745b0bb9c23e4e9894a24479941744c156bd Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 27 Sep 2019 19:36:19 +0300 Subject: [PATCH] Fix userpic display in custom notifications. Fixes #6532. --- Telegram/SourceFiles/window/notifications_manager_default.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/window/notifications_manager_default.cpp b/Telegram/SourceFiles/window/notifications_manager_default.cpp index 2d425d376..01860062f 100644 --- a/Telegram/SourceFiles/window/notifications_manager_default.cpp +++ b/Telegram/SourceFiles/window/notifications_manager_default.cpp @@ -668,7 +668,7 @@ void Notification::actionsOpacityCallback() { void Notification::updateNotifyDisplay() { if (!_history || !_peer || (!_item && _forwardedCount < 2)) return; - auto options = Manager::getNotificationOptions(_item); + const auto options = Manager::getNotificationOptions(_item); _hideReplyButton = options.hideReplyButton; int32 w = width(), h = height(); @@ -686,12 +686,14 @@ void Notification::updateNotifyDisplay() { if (!options.hideNameAndPhoto) { if (_fromScheduled && _history->peer->isSelf()) { Ui::EmptyUserpic::PaintSavedMessages(p, st::notifyPhotoPos.x(), st::notifyPhotoPos.y(), width(), st::notifyPhotoSize); + _userpicLoaded = true; } else { _history->peer->loadUserpic(); _history->peer->paintUserpicLeft(p, st::notifyPhotoPos.x(), st::notifyPhotoPos.y(), width(), st::notifyPhotoSize); } } else { p.drawPixmap(st::notifyPhotoPos.x(), st::notifyPhotoPos.y(), manager()->hiddenUserpicPlaceholder()); + _userpicLoaded = true; } int32 itemWidth = w - st::notifyPhotoPos.x() - st::notifyPhotoSize - st::notifyTextLeft - st::notifyClosePos.x() - st::notifyClose.width;