Solved clipping of the scrollbar on different textareas

This commit is contained in:
Marco Dalla Tiezza
2024-06-06 20:12:29 +02:00
parent 9d2443b0f0
commit c7c53b5a68
4 changed files with 519 additions and 526 deletions

View File

@@ -154,17 +154,18 @@ Window {
}
}
ScrollView {
Flickable {
Layout.fillWidth: true
Layout.topMargin: 5
Layout.fillHeight: true
ScrollBar.vertical.interactive: true
TextArea {
Layout.topMargin: 5
TextArea.flickable: TextArea {
id: paramDescription
placeholderText: qsTr("Description")
wrapMode: TextEdit.WordWrap
font.pointSize: 10
wrapMode: TextEdit.WordWrap
}
ScrollBar.vertical: ScrollBar {
width: 10
}
}