Fixed issue when "Too much usernames" box appearing only after typing.

This commit is contained in:
23rd 2019-03-17 11:38:28 +03:00 committed by John Preston
parent ae25538706
commit c86257568f
1 changed files with 4 additions and 3 deletions

View File

@ -354,14 +354,15 @@ void Controller::createContent() {
privacyButtons->setChangedCallback([this](Privacy value) {
privacyChanged(value);
});
if (privacyButtons->value() == Privacy::Private) {
checkUsernameAvailability();
}
// _wrap->add(createPrivaciesEdit());
_wrap->add(createInviteLinkCreate());
_wrap->add(createInviteLinkEdit());
_wrap->add(createUsernameEdit());
if (privacyButtons->value() == Privacy::Private) {
checkUsernameAvailability();
}
}
object_ptr<Ui::RpWidget> Controller::createUsernameEdit() {