diff options
author | Marvin Borner | 2020-04-04 23:11:22 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-04 23:11:22 +0200 |
commit | 15e08d632fb305476914041d28395fc16e79efa1 (patch) | |
tree | 2c6e51b9567e9200410c238eaf573b2f366f7a7d /qml/pages/Menu.qml | |
parent | 81cc34bfcc8d7ec695a4d70c4c1c82b9035bf272 (diff) |
Heavy renaming and 0-check fix
Diffstat (limited to 'qml/pages/Menu.qml')
-rw-r--r-- | qml/pages/Menu.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qml/pages/Menu.qml b/qml/pages/Menu.qml index 39de258..1d93a0f 100644 --- a/qml/pages/Menu.qml +++ b/qml/pages/Menu.qml @@ -3,7 +3,7 @@ import Sailfish.Silica 1.0 Page { id: page - allowedOrientations: Orientation.All + allowedOrientations: Orientation.Portrait SilicaFlickable { anchors.fill: parent @@ -53,7 +53,7 @@ Page { } Button { - text: qsTr("Godlike (10 Bit)") + text: qsTr("God-like (10 Bit)") onClicked: { pageStack.push(Qt.resolvedUrl("Game.qml"), {bits: 10}); } |