diff options
Diffstat (limited to 'qml/pages/Board.qml')
-rw-r--r-- | qml/pages/Board.qml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/qml/pages/Board.qml b/qml/pages/Board.qml index 58af5ee..240fa11 100644 --- a/qml/pages/Board.qml +++ b/qml/pages/Board.qml @@ -1,4 +1,4 @@ -import QtQuick 2.0 +import QtQuick 2.2 import Sailfish.Silica 1.0 import org.nemomobile.configuration 1.0 import ".." @@ -52,12 +52,14 @@ Page { title: qsTr("Chess") } - Label { + LinkedLabel { id: information + width: parent.width + color: "white" anchors.horizontalCenter: parent.horizontalCenter anchors.bottom: grid.top bottomPadding: Theme.paddingMedium - text: qsTr("Please start a game"); + plainText: qsTr("Please start a game"); } Grid { |