summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@qt.io>2018-02-16 16:16:51 +0200
committerTomi Korpipää <tomi.korpipaa@qt.io>2018-02-19 05:26:22 +0000
commitadd624fc5c10f2610d531b24246f99157428e680 (patch)
treeb831e6066d0fdc1856085eace491bdc758ba6d61
parent367d2d235809ef453089803cb86994ed34c9c612 (diff)
Fix text area background height for Text element textstring field
Fixed by setting the background height explicitly. Task-number: QT3DS-1044 Change-Id: I1548813bd073933a95192bbe4a0d27c1ae8f9cc5 Reviewed-by: Janne Koskinen <janne.p.koskinen@qt.io> Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
-rw-r--r--src/Authoring/Studio/Palettes/Inspector/InspectorControlView.qml1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Authoring/Studio/Palettes/Inspector/InspectorControlView.qml b/src/Authoring/Studio/Palettes/Inspector/InspectorControlView.qml
index 9d8f6d02..3e3b2f8d 100644
--- a/src/Authoring/Studio/Palettes/Inspector/InspectorControlView.qml
+++ b/src/Authoring/Studio/Palettes/Inspector/InspectorControlView.qml
@@ -439,6 +439,7 @@ Rectangle {
rightPadding: 6
background: Rectangle {
+ height: textArea.height
color: textArea.enabled ? _studioColor2 : "transparent"
border.width: textArea.activeFocus ? 1 : 0
border.color: textArea.activeFocus ? _selectionColor : _disabledColor