aboutsummaryrefslogtreecommitdiffstats
path: root/qt-mobile/qml/Log.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qt-mobile/qml/Log.qml')
-rw-r--r--qt-mobile/qml/Log.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/qt-mobile/qml/Log.qml b/qt-mobile/qml/Log.qml
index 9e29a4d00..f49e3ba73 100644
--- a/qt-mobile/qml/Log.qml
+++ b/qt-mobile/qml/Log.qml
@@ -21,13 +21,15 @@ MobileComponents.Page {
contentHeight: logContent.height
clip: true
ColumnLayout {
+ width: logFlick.width
spacing: MobileComponents.Units.smallSpacing
MobileComponents.Heading {
text: "Application Log"
}
MobileComponents.Label {
id: logContent
- width: logFlick.width
+ Layout.preferredWidth: parent.width
+ Layout.maximumWidth: parent.width
wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
text: manager.logText
}