Skip to content

Commit

Permalink
Merge pull request #1165 from deXol/develop1021MakeCredentialPopupSpe…
Browse files Browse the repository at this point in the history
…cific

Change Credential save error message to more specific, fix #1021
  • Loading branch information
limpkin authored Apr 15, 2023
2 parents 0a7ef3c + e1c737c commit 91bff07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CredentialsManagement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ void CredentialsManagement::on_addCredentialButton_clicked()
if (success)
QMessageBox::information(this, "Moolticute", tr("%1: New Login %2 added.").arg(service, login));
else
QMessageBox::warning(this, tr("Failure"), tr("Couldn't Add New Credential to Device"));
QMessageBox::warning(this, tr("Failure"), tr("Couldn't Add This Credential: Please approve the request on the device."));

ui->addCredServiceInput->clear();
ui->addCredLoginInput->clear();
Expand Down

0 comments on commit 91bff07

Please sign in to comment.