summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--demos/declarative/samegame/SameGame.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/declarative/samegame/SameGame.qml b/demos/declarative/samegame/SameGame.qml
index a9d8140..c0a1b2a 100644
--- a/demos/declarative/samegame/SameGame.qml
+++ b/demos/declarative/samegame/SameGame.qml
@@ -3,7 +3,7 @@ import "content"
Rectangle {
id: Screen
- width: 460; height: 700
+ width: 490; height: 720
Script { source: "content/samegame.js" }
@@ -23,8 +23,8 @@ Rectangle {
property int score: 0
z: 20; anchors.centerIn: parent
- width: parent.width - tileSize - (parent.width % tileSize);
- height: parent.height - tileSize - (parent.height % tileSize);
+ width: parent.width - (parent.width % tileSize);
+ height: parent.height - (parent.height % tileSize);
MouseRegion {
id: gameMR