Automatically focus on input when opening a dialog

This commit is contained in:
Konstantinos Sideris 2018-01-16 22:50:47 +02:00
parent eea33062e3
commit 9de2db2fb8
6 changed files with 27 additions and 0 deletions

View file

@ -147,3 +147,11 @@ InviteUsers::invitedUsers() const
return users;
}
void
InviteUsers::showEvent(QShowEvent *event)
{
inviteeInput_->setFocus();
QFrame::showEvent(event);
}