mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Trim blanks from user name before checking username is not empty
This commit is contained in:
parent
cc7877afd7
commit
22a8303836
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user