summaryrefslogtreecommitdiffstats
path: root/basicsuite/webengine/ui
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@digia.com>2014-05-21 14:10:05 +0200
committerAndras Becsi <andras.becsi@digia.com>2014-05-21 15:16:06 +0300
commit536f2ed4438a1e04aeed372d08c46811603f5018 (patch)
tree8207705ee648774ed7e6a5922e4f0ab3ca2aa976 /basicsuite/webengine/ui
parent3b64133f33ccb3e8e6f429b0ade56d836687fd0a (diff)
webengine demo: rearrange layout to make all links visible on iMX6
Change-Id: Id7c317a2b678940f6bb0914e1d0b61610be5f43a Reviewed-by: Laszlo Agocs <laszlo.agocs@digia.com>
Diffstat (limited to 'basicsuite/webengine/ui')
-rw-r--r--basicsuite/webengine/ui/PageView.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/basicsuite/webengine/ui/PageView.qml b/basicsuite/webengine/ui/PageView.qml
index a7ea7a1..778fcd7 100644
--- a/basicsuite/webengine/ui/PageView.qml
+++ b/basicsuite/webengine/ui/PageView.qml
@@ -47,7 +47,7 @@ Rectangle {
color: "#AAAAAA"
visible: true
- property real fontPointSize: 12
+ property real fontPointSize: 13
function show() {
enabled = true
@@ -63,9 +63,10 @@ Rectangle {
ColumnLayout {
id: links
anchors {
- bottom: localContent.top
+ bottom: parent.bottom
+ top: parent.top
horizontalCenter: parent.horizontalCenter
- bottomMargin: 50
+ margins: 50
}
Text {
text: "http://www.google.com"
@@ -112,11 +113,9 @@ Rectangle {
}
}
}
- }
RowLayout {
id: localContent
anchors {
- centerIn: parent
margins: 50
}
Image {
@@ -143,5 +142,6 @@ Rectangle {
}
}
}
- }
+ } // RowLayout
+ } // ColumnLayout
}