Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorameyer0 <48535411+ameyer0@users.noreply.github.com>2020-05-11 04:35:08 +0300
committerGitHub <noreply@github.com>2020-05-11 04:35:08 +0300
commit560209550c379c87763827d97149d9faa158b9ca (patch)
tree4ad978cbe4bfe6e383312452b2d858f4f098414f /src/gui/EntryPreviewWidget.cpp
parentdcff507e0260940db818c688a658ee53d88f38cc (diff)
Change settings checkbox texts to positive phrasing (#4715)
Diffstat (limited to 'src/gui/EntryPreviewWidget.cpp')
-rw-r--r--src/gui/EntryPreviewWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/EntryPreviewWidget.cpp b/src/gui/EntryPreviewWidget.cpp
index f0301017c..0a46417e0 100644
--- a/src/gui/EntryPreviewWidget.cpp
+++ b/src/gui/EntryPreviewWidget.cpp
@@ -186,7 +186,7 @@ void EntryPreviewWidget::setPasswordVisible(bool state)
if (state) {
m_ui->entryPasswordLabel->setText(password);
m_ui->entryPasswordLabel->setCursorPosition(0);
- } else if (password.isEmpty() && config()->get(Config::Security_PasswordEmptyNoDots).toBool()) {
+ } else if (password.isEmpty() && !config()->get(Config::Security_PasswordEmptyPlaceholder).toBool()) {
m_ui->entryPasswordLabel->setText("");
} else {
m_ui->entryPasswordLabel->setText(QString("\u25cf").repeated(6));