diff options
Diffstat (limited to 'qml/Square.qml')
-rw-r--r-- | qml/Square.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qml/Square.qml b/qml/Square.qml index b1e3e0c..2169290 100644 --- a/qml/Square.qml +++ b/qml/Square.qml @@ -3,7 +3,7 @@ import QtQuick 2.0 Rectangle { property int i: 0 property string piece: "" - property string image: piece !== "" ? "images/" + piece + ".svg" : "" + property string image: piece !== "" ? "qrc:///images/" + piece + ".svg" : "" width: page.width / 8 height: this.width |