summaryrefslogtreecommitdiff
path: root/qml/pages/Board.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/pages/Board.qml')
-rw-r--r--qml/pages/Board.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/qml/pages/Board.qml b/qml/pages/Board.qml
index 03fa000..cee8492 100644
--- a/qml/pages/Board.qml
+++ b/qml/pages/Board.qml
@@ -15,7 +15,7 @@ Page {
Column {
- id: column
+ id : column
anchors.fill: parent;
spacing: 25
@@ -45,22 +45,22 @@ Page {
}
Goban {
- id: goban;
+ id:goban
width: parent.width;
height: column.height - (row.height + view.height);
}
-
SlideshowView {
id: view
width: parent.width
- height: 100
+ height: 200
itemWidth: width / 2
onCurrentIndexChanged: {py.call('board.getGame', [view.currentIndex], goban.setGoban)}
- model: 5
+ model: 1
delegate: Text {
horizontalAlignment: Text.AlignHCenter
+ verticalAlignment: Text.AlignVCenter
color: Theme.primaryColor
font.family: Theme.fontFamily
@@ -68,7 +68,7 @@ Page {
width: view.itemWidth
height: view.height
- text: "Problem " + (index + 1);
+ text: "Problem " + (index + 1);
}
}