From a3b91da66c586331abf4fc0d986be64a3296a3ca Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Tue, 2 Jan 2024 14:31:51 +0300 Subject: [PATCH] Added silent info to tooltip of scheduled messages. --- Telegram/SourceFiles/history/view/history_view_element.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Telegram/SourceFiles/history/view/history_view_element.cpp b/Telegram/SourceFiles/history/view/history_view_element.cpp index a573eace0..d2c56ca8e 100644 --- a/Telegram/SourceFiles/history/view/history_view_element.cpp +++ b/Telegram/SourceFiles/history/view/history_view_element.cpp @@ -276,6 +276,9 @@ QString DateTooltipText(not_null view) { msgsigned->postAuthor); } } + if (item->isScheduled() && item->isSilent()) { + dateText += '\n' + QChar(0xD83D) + QChar(0xDD15); + } return dateText; }