diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-19 19:05:06 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-19 19:05:09 +0200 |
commit | 2318c394a805cbd58e6087a144456d3980e1de36 (patch) | |
tree | 2dfdbb68e493fc5008c3fd77805de5c197325268 /src | |
parent | yuzu/configuration/configure_system: Specify string conversions explicitly (diff) | |
download | yuzu-2318c394a805cbd58e6087a144456d3980e1de36.tar yuzu-2318c394a805cbd58e6087a144456d3980e1de36.tar.gz yuzu-2318c394a805cbd58e6087a144456d3980e1de36.tar.bz2 yuzu-2318c394a805cbd58e6087a144456d3980e1de36.tar.lz yuzu-2318c394a805cbd58e6087a144456d3980e1de36.tar.xz yuzu-2318c394a805cbd58e6087a144456d3980e1de36.tar.zst yuzu-2318c394a805cbd58e6087a144456d3980e1de36.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/configuration/configure_web.cpp | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/src/yuzu/configuration/configure_web.cpp b/src/yuzu/configuration/configure_web.cpp index 18566d028..9dc34412d 100644 --- a/src/yuzu/configuration/configure_web.cpp +++ b/src/yuzu/configuration/configure_web.cpp @@ -78,12 +78,16 @@ void ConfigureWeb::RefreshTelemetryID() { void ConfigureWeb::OnLoginChanged() { if (ui->edit_username->text().isEmpty() && ui->edit_token->text().isEmpty()) { user_verified = true; - ui->label_username_verified->setPixmap(QIcon::fromTheme("checked").pixmap(16)); - ui->label_token_verified->setPixmap(QIcon::fromTheme("checked").pixmap(16)); + + const QPixmap pixmap = QIcon::fromTheme(QStringLiteral("checked")).pixmap(16); + ui->label_username_verified->setPixmap(pixmap); + ui->label_token_verified->setPixmap(pixmap); } else { user_verified = false; - ui->label_username_verified->setPixmap(QIcon::fromTheme("failed").pixmap(16)); - ui->label_token_verified->setPixmap(QIcon::fromTheme("failed").pixmap(16)); + + const QPixmap pixmap = QIcon::fromTheme(QStringLiteral("failed")).pixmap(16); + ui->label_username_verified->setPixmap(pixmap); + ui->label_token_verified->setPixmap(pixmap); } } @@ -101,11 +105,15 @@ void ConfigureWeb::OnLoginVerified() { ui->button_verify_login->setText(tr("Verify")); if (verify_watcher.result()) { user_verified = true; - ui->label_username_verified->setPixmap(QIcon::fromTheme("checked").pixmap(16)); - ui->label_token_verified->setPixmap(QIcon::fromTheme("checked").pixmap(16)); + + const QPixmap pixmap = QIcon::fromTheme(QStringLiteral("checked")).pixmap(16); + ui->label_username_verified->setPixmap(pixmap); + ui->label_token_verified->setPixmap(pixmap); } else { - ui->label_username_verified->setPixmap(QIcon::fromTheme("failed").pixmap(16)); - ui->label_token_verified->setPixmap(QIcon::fromTheme("failed").pixmap(16)); + const QPixmap pixmap = QIcon::fromTheme(QStringLiteral("failed")).pixmap(16); + ui->label_username_verified->setPixmap(pixmap); + ui->label_token_verified->setPixmap(pixmap); + QMessageBox::critical( this, tr("Verification failed"), tr("Verification failed. Check that you have entered your username and token " |