29 lines
970 B
Diff
29 lines
970 B
Diff
From e72a8c2dad4dbce7972bba24631f8ad24e8fe990 Mon Sep 17 00:00:00 2001
|
|
From: Christoph Feck <cfeck@kde.org>
|
|
Date: Fri, 18 Aug 2017 14:05:39 +0200
|
|
Subject: [PATCH] [KPasswordLineEdit] Set focus proxy to line edit
|
|
|
|
BUG: 383653
|
|
FIXED-IN: 5.38.0
|
|
|
|
Differential Revision: https://phabricator.kde.org/D7378
|
|
---
|
|
src/kpasswordlineedit.cpp | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/kpasswordlineedit.cpp b/src/kpasswordlineedit.cpp
|
|
index 834cfb1..89e89b8 100644
|
|
--- a/src/kpasswordlineedit.cpp
|
|
+++ b/src/kpasswordlineedit.cpp
|
|
@@ -96,6 +96,7 @@ KPasswordLineEdit::KPasswordLineEdit(QWidget *parent)
|
|
d->passwordLineEdit->setObjectName(QStringLiteral("passwordlineedit"));
|
|
d->passwordLineEdit->setEchoMode(QLineEdit::Password);
|
|
connect(d->passwordLineEdit, &QLineEdit::textChanged, this, &KPasswordLineEdit::passwordChanged);
|
|
+ setFocusProxy(d->passwordLineEdit);
|
|
mainLayout->addWidget(d->passwordLineEdit);
|
|
d->initialize();
|
|
}
|
|
--
|
|
2.14.0
|
|
|