From adcce61b528ebc006121131bf673d7331fc61df0 Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 29 Jan 2018 21:06:58 +0300 Subject: [PATCH] Fix date/unread bar display in albums. --- Telegram/SourceFiles/history/view/history_view_message.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/history/view/history_view_message.cpp b/Telegram/SourceFiles/history/view/history_view_message.cpp index d842e5fc3..7d5e9d677 100644 --- a/Telegram/SourceFiles/history/view/history_view_message.cpp +++ b/Telegram/SourceFiles/history/view/history_view_message.cpp @@ -1533,7 +1533,7 @@ QRect Message::countGeometry() const { int Message::resizeContentGetHeight(int newWidth) { if (isHiddenByGroup()) { - return 0; + return marginTop() + marginBottom(); } else if (newWidth < st::msgMinWidth) { return height(); }