From 17927de45e769d4dbac5b1547464b2618150cfb4 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 10 Apr 2020 17:44:23 +0200 Subject: Implemented login page --- qml/Square.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qml/Square.qml') 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 -- cgit v1.2.3