Show group / channel in ConfirmInviteBox.

This commit is contained in:
John Preston 2018-10-24 17:40:37 +04:00
parent a961615076
commit 8f387891e2
2 changed files with 7 additions and 2 deletions

View File

@ -658,7 +658,8 @@ ConfirmInviteBox::ConfirmInviteBox(
const QVector<UserData*> &participants)
: _title(this, st::confirmInviteTitle)
, _status(this, st::confirmInviteStatus)
, _participants(participants) {
, _participants(participants)
, _isChannel(isChannel) {
_title->setText(title);
QString status;
if (_participants.isEmpty() || _participants.size() >= count) {
@ -694,7 +695,10 @@ ConfirmInviteBox::ConfirmInviteBox(
}
void ConfirmInviteBox::prepare() {
addButton(langFactory(lng_group_invite_join), [] {
const auto joinKey = _isChannel
? lng_profile_join_channel
: lng_profile_join_group;
addButton(langFactory(joinKey), [] {
if (auto main = App::main()) {
main->onInviteImport();
}

View File

@ -220,6 +220,7 @@ private:
ImagePtr _photo;
std::unique_ptr<Ui::EmptyUserpic> _photoEmpty;
QVector<UserData*> _participants;
bool _isChannel = false;
int _userWidth = 0;