Fix date/unread bar display in albums.

This commit is contained in:
John Preston 2018-01-29 21:06:58 +03:00
parent 17b913fb13
commit adcce61b52
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}