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

@@ -573,19 +573,21 @@ Page {
}
}
ScrollView {
Flickable {
Layout.fillWidth: true
Layout.topMargin: 5
Layout.fillHeight: true
ScrollBar.vertical.interactive: true
TextArea {
Layout.topMargin: 5
TextArea.flickable: TextArea {
id: descriptionTextArea
placeholderText: qsTr("Description")
font.pointSize: 10
wrapMode: TextEdit.WordWrap
textFormat: Text.MarkdownText
font.pointSize: 10
readOnly: true
}
ScrollBar.vertical: ScrollBar {
width: 10
}
}
}