mirror of https://github.com/procxx/kepka.git
Excluded ability to display 0 views in channel posts.
This commit is contained in:
parent
dcd5aa83da
commit
63a6893fda
|
@ -1098,7 +1098,7 @@ void HistoryMessage::setViewsCount(int32 count) {
|
||||||
|
|
||||||
const auto was = views->_viewsWidth;
|
const auto was = views->_viewsWidth;
|
||||||
views->_views = count;
|
views->_views = count;
|
||||||
views->_viewsText = (views->_views >= 0)
|
views->_viewsText = (views->_views > 0)
|
||||||
? lng_channel_views(lt_count_short, views->_views)
|
? lng_channel_views(lt_count_short, views->_views)
|
||||||
: QString();
|
: QString();
|
||||||
views->_viewsWidth = views->_viewsText.isEmpty()
|
views->_viewsWidth = views->_viewsText.isEmpty()
|
||||||
|
|
|
@ -1797,7 +1797,7 @@ void Message::initTime() {
|
||||||
item->_timeWidth = st::msgDateFont->width(item->_timeText);
|
item->_timeWidth = st::msgDateFont->width(item->_timeText);
|
||||||
}
|
}
|
||||||
if (const auto views = item->Get<HistoryMessageViews>()) {
|
if (const auto views = item->Get<HistoryMessageViews>()) {
|
||||||
views->_viewsText = (views->_views >= 0)
|
views->_viewsText = (views->_views > 0)
|
||||||
? lng_channel_views(lt_count_short, views->_views)
|
? lng_channel_views(lt_count_short, views->_views)
|
||||||
: QString();
|
: QString();
|
||||||
views->_viewsWidth = views->_viewsText.isEmpty()
|
views->_viewsWidth = views->_viewsText.isEmpty()
|
||||||
|
|
Loading…
Reference in New Issue