Trim blanks from user name before checking username is not empty

This commit is contained in:
Seeker4 2019-08-26 23:10:58 -07:00
parent cc7877afd7
commit 22a8303836

View File

@ -151,7 +151,7 @@ void NewProfile::on_nextButton_clicked()
break;
case 1:
if (ui->userNameEdit->text().isEmpty()) {
if (ui->userNameEdit->text().trimmed().isEmpty()) {
QMessageBox::information(this, STR_MessageBox_Error, tr("Please provide a username for this profile"), QMessageBox::Ok);
return;
}
@ -190,7 +190,7 @@ void NewProfile::on_nextButton_clicked()
ui->stackedWidget->setCurrentIndex(index);
} else {
// Finish button clicked.
QString username = ui->userNameEdit->text();
QString username = ui->userNameEdit->text().trimmed();
if (QMessageBox::question(this, tr("Profile Changes"), tr("Accept and save this information?"),
QMessageBox::Yes, QMessageBox::No) == QMessageBox::Yes) {