Added special bullet char to global access.

This commit is contained in:
23rd
2026-01-12 22:02:10 +03:00
parent 481de1e3e3
commit 9fb25bfada
13 changed files with 30 additions and 25 deletions
@@ -1802,12 +1802,14 @@ object_ptr<Ui::RpWidget> DetailsFiller::setupPersonalChannel(
) | rpl::map([](TextWithEntities &&text, ChannelData *channel) {
const auto count = channel ? channel->membersCount() : 0;
if (count > 1) {
text.append(
QString::fromUtf8(" \xE2\x80\xA2 ")
).append(tr::lng_chat_status_subscribers(
tr::now,
lt_count_decimal,
count));
text.append(' ')
.append(Ui::kQBullet)
.append(' ')
.append(
tr::lng_chat_status_subscribers(
tr::now,
lt_count_decimal,
count));
}
return text;
});