From 56636db0fb9fcc957f7333d92edceed4dc1f0d05 Mon Sep 17 00:00:00 2001 From: Bernhard Wagner Date: Mon, 18 Mar 2024 10:15:25 +0100 Subject: [PATCH] Update TLineEditV1.qml FIXES: height of rectangle around TextInput --- docs/ch04-qmlstart/src/input/TLineEditV1.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ch04-qmlstart/src/input/TLineEditV1.qml b/docs/ch04-qmlstart/src/input/TLineEditV1.qml index 2c1f45e6..b6acca76 100644 --- a/docs/ch04-qmlstart/src/input/TLineEditV1.qml +++ b/docs/ch04-qmlstart/src/input/TLineEditV1.qml @@ -31,7 +31,7 @@ import QtQuick Rectangle { - width: 96; height: input.height + 8 + width: 96; height: input.implicitHeight + 8 color: "lightsteelblue" border.color: "gray"