mirror of
https://github.com/tnodir/fort
synced 2024-11-17 22:26:17 +00:00
22 lines
360 B
QML
22 lines
360 B
QML
|
import QtQuick 2.9
|
||
|
import QtQuick.Controls 2.2
|
||
|
|
||
|
Frame {
|
||
|
id: frame
|
||
|
|
||
|
signal editingFinished() // Workaround for QTBUG-59908
|
||
|
|
||
|
readonly property alias textArea: textArea
|
||
|
|
||
|
padding: 0
|
||
|
|
||
|
ScrollView {
|
||
|
anchors.fill: parent
|
||
|
|
||
|
TextArea {
|
||
|
id: textArea
|
||
|
onEditingFinished: frame.editingFinished()
|
||
|
}
|
||
|
}
|
||
|
}
|