From 8738210991c0f258e0e04bf0bcad048fc00d6e44 Mon Sep 17 00:00:00 2001 From: xiphon Date: Tue, 26 Nov 2019 16:08:31 +0000 Subject: [PATCH] PasswordDialog: fix text field height changing on input (Windows) --- components/PasswordDialog.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml index bfea8948..18bccdfe 100644 --- a/components/PasswordDialog.qml +++ b/components/PasswordDialog.qml @@ -203,6 +203,7 @@ Item { return passwordInput2 } } + implicitHeight: 50 bottomPadding: 10 leftPadding: 10 topPadding: 10 @@ -307,6 +308,7 @@ Item { font.pixelSize: 24 echoMode: TextInput.Password KeyNavigation.tab: okButton + implicitHeight: 50 bottomPadding: 10 leftPadding: 10 topPadding: 10