summaryrefslogtreecommitdiffstats
path: root/src/qml
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@theqtcompany.com>2015-08-18 17:26:08 +0200
committerAndras Becsi <andras.becsi@theqtcompany.com>2015-08-18 17:26:08 +0200
commitccf5275e76bb07a288b52322c37c675b23b628b9 (patch)
tree0f83fa85f0ce1534c92ef8b82130662d82d58b5f /src/qml
parent80909635025d670912020ff8bd224b3aaf6d40da (diff)
Rename project to qtwebbrowser
Diffstat (limited to 'src/qml')
-rw-r--r--src/qml/PageView.qml9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/qml/PageView.qml b/src/qml/PageView.qml
index 0a73ac0..b78feaa 100644
--- a/src/qml/PageView.qml
+++ b/src/qml/PageView.qml
@@ -257,13 +257,12 @@ Rectangle {
color: "white"
Image {
id: placeholder
- anchors {
- verticalCenterOffset: -toolBarSize
- centerIn: parent
- }
+ y: placeholder.height - navigation.y
+ anchors.horizontalCenter: parent.horizontalCenter
source: "qrc:///icon"
}
Text {
+ id: label
anchors {
top: placeholder.bottom
topMargin: 20
@@ -272,7 +271,7 @@ Rectangle {
font.family: defaultFontFamily
font.pixelSize: 28
color: uiColor
- text: "Qt Browser"
+ text: "Qt WebBrowser"
}
Behavior on opacity {