From: Heli Hyvättinen Date: Fri, 5 Aug 2011 20:56:02 +0000 (+0300) Subject: Shows the logo image too X-Git-Tag: v1.9.0~64 X-Git-Url: http://vcs.maemo.org/git/?a=commitdiff_plain;h=45ec47e8e8f6df79ebc817fc70baf0fa94acbde8;p=chessclock Shows the logo image too --- diff --git a/qml/MainPage.qml b/qml/MainPage.qml index fdae146..ef11a4c 100644 --- a/qml/MainPage.qml +++ b/qml/MainPage.qml @@ -20,6 +20,15 @@ Page { // onClicked: newGameDialog.open() // } + Image + { + id: bigLogo +// anchors.fill: parent +// anchors.left: menuList.right + + source: ":/rc/pic/logo.png" + } + ListModel { id: menuModel @@ -65,7 +74,12 @@ Page { ListView { id: menuList - anchors.fill: parent + + anchors.left: bigLogo.right + anchors.right: parent.right + anchors.top: parent.top + anchors.bottom: parent.bottom + model: menuModel @@ -84,15 +98,7 @@ Page { } -// Image { -// id: image1 -// anchors.centerIn: parent -// x: 0 -// y: 0 -// width: 100 -// height: 100 -// source: ":/pic/logo.png" -// } +