mirror of https://github.com/procxx/kepka.git
Fixed issue when "Too much usernames" box appearing only after typing.
This commit is contained in:
parent
ae25538706
commit
c86257568f
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue