Skip to content

Commit

Permalink
Show passwords as monospace
Browse files Browse the repository at this point in the history
  • Loading branch information
cmol committed Jun 12, 2020
1 parent 816c051 commit ce4cbde
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 ce4cbde

Please sign in to comment.