Skip to content

Commit

Permalink
Merge pull request #528 from cmol/monospace_password
Browse files Browse the repository at this point in the history
#514 Show password with a monospace font
  • Loading branch information
annejan authored Jun 12, 2020
2 parents b6f7c6c + e0b4250 commit 66c78a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ void MainWindow::passShowHandler(const QString &p_output) {
} else {
if (!password.isEmpty()) {
// set the password, it is hidden if needed in addToGridLayout
addToGridLayout(0, tr("Password"), password);
addToGridLayout(0, tr("Password"), "<tt>" + password + "</tt>");
}

NamedValues namedValues = fileContent.getNamedValues();
Expand Down

0 comments on commit 66c78a9

Please sign in to comment.