summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2020-06-13 00:09:33 +0200
committerGitHub <noreply@github.com>2020-06-13 00:09:33 +0200
commit66c78a9a3ea83095d31220af7949f79986fab8c6 (patch)
treea3210eaef826bf20712621124c91d3ffe9e57b3e
parentb6f7c6caf5c53f776870e160f54f2608e1649365 (diff)
parente0b4250c8356f8cb66eb9cca537a84293d21c4b9 (diff)
Merge pull request #528 from cmol/monospace_password
#514 Show password with a monospace font
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 9ce04305..0f838897 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -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();