From 22a8303836131d0a1394be7446a25633ad37d5a5 Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Mon, 26 Aug 2019 23:10:58 -0700 Subject: [PATCH] Trim blanks from user name before checking username is not empty --- oscar/newprofile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oscar/newprofile.cpp b/oscar/newprofile.cpp index 392ae76a..46ec01ae 100644 --- a/oscar/newprofile.cpp +++ b/oscar/newprofile.cpp @@ -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) {