QML UI: explicitly reference parent id

Otherwise we get an odd 'TypeError: Cannot read property of null'
error message.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2017-06-17 14:06:06 -07:00
parent b45340389b
commit 9db886b8c8

View file

@ -28,7 +28,7 @@ Kirigami.ScrollablePage {
text: qsTr("Application Log")
}
delegate : Text {
width: parent.width
width: logWindow.width
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
text : message
}