diff options
author | Marvin Borner | 2020-04-10 17:44:23 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-10 17:44:23 +0200 |
commit | 17927de45e769d4dbac5b1547464b2618150cfb4 (patch) | |
tree | 610a5e82ebecd8289343b6247f78f7d0378f9211 /qml/Square.qml | |
parent | 71e4befa76e91721df2baeab99fff1b4987b0cdb (diff) |
Implemented login page
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 |