diff --git a/Telegram/SourceFiles/history/view/history_view_bottom_info.cpp b/Telegram/SourceFiles/history/view/history_view_bottom_info.cpp index 665ec53596..de6d993975 100644 --- a/Telegram/SourceFiles/history/view/history_view_bottom_info.cpp +++ b/Telegram/SourceFiles/history/view/history_view_bottom_info.cpp @@ -167,9 +167,10 @@ void BottomInfo::paint( const auto &icon = inverted ? st->historyViewsInvertedIcon() : stm->historyViewsIcon; + right -= st::historyViewsWidth; icon.paint( p, - right - st::historyViewsWidth, + right, firstLineBottom + st::historyViewsTop, outerWidth); } @@ -181,9 +182,10 @@ void BottomInfo::paint( const auto &icon = inverted ? st->historyRepliesInvertedIcon() : stm->historyRepliesIcon; + right -= st::historyViewsWidth; icon.paint( p, - right - st::historyViewsWidth, + right, firstLineBottom + st::historyViewsTop, outerWidth); }