diff --git a/sleepyhead/newprofile.cpp b/sleepyhead/newprofile.cpp index b433b62e..e472629b 100644 --- a/sleepyhead/newprofile.cpp +++ b/sleepyhead/newprofile.cpp @@ -31,7 +31,7 @@ NewProfile::NewProfile(QWidget *parent) : ui(new Ui::NewProfile) { ui->setupUi(this); - ui->userNameEdit->setText(getUserName()); +// ui->userNameEdit->setText(getUserName()); QLocale locale = QLocale::system(); QString shortformat = locale.dateFormat(QLocale::ShortFormat); @@ -157,7 +157,7 @@ void NewProfile::on_nextButton_clicked() case 1: if (ui->userNameEdit->text().isEmpty()) { - QMessageBox::information(this, STR_MessageBox_Error, tr("Empty Username"), QMessageBox::Ok); + QMessageBox::information(this, STR_MessageBox_Error, tr("Please provide a username for this profile"), QMessageBox::Ok); return; } diff --git a/sleepyhead/profileselect.cpp b/sleepyhead/profileselect.cpp index 0b959d25..5a5c391c 100644 --- a/sleepyhead/profileselect.cpp +++ b/sleepyhead/profileselect.cpp @@ -280,6 +280,7 @@ void ProfileSelect::on_newProfileButton_clicked() { NewProfile newprof(this); newprof.skipWelcomeScreen(); + newprof.setWindowTitle(tr("Create new profile")); if (newprof.exec() == NewProfile::Rejected) { // reject();