diff options
author | Maran <maran.hidskes@gmail.com> | 2014-07-08 20:05:42 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-07-08 20:05:42 +0800 |
commit | 79259c916ddb7fb9bbd2515dabb84b4f9025b4e3 (patch) | |
tree | e265fff485d70e9ccbe3682befc7d58330d47cf7 | |
parent | 0360e60dd54f773a922ada86fa669a9e78e31e18 (diff) | |
download | dexon-79259c916ddb7fb9bbd2515dabb84b4f9025b4e3.tar.gz dexon-79259c916ddb7fb9bbd2515dabb84b4f9025b4e3.tar.zst dexon-79259c916ddb7fb9bbd2515dabb84b4f9025b4e3.zip |
Use relative image paths to help with windows builds
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index 4b252f200..33e1cc24c 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -100,7 +100,7 @@ ApplicationWindow { anchors.right: parent.right height: 200 Image { - source: ui.assetPath("tx.png") + source: "../tx.png" anchors.horizontalCenter: parent.horizontalCenter MouseArea { anchors.fill: parent @@ -110,7 +110,7 @@ ApplicationWindow { } } Image { - source: ui.assetPath("new.png") + source: "../new.png" anchors.horizontalCenter: parent.horizontalCenter MouseArea { anchors.fill: parent @@ -120,7 +120,7 @@ ApplicationWindow { } } Image { - source: ui.assetPath("net.png") + source: "../net.png" anchors.horizontalCenter: parent.horizontalCenter MouseArea { anchors.fill: parent @@ -131,7 +131,7 @@ ApplicationWindow { } Image { - source: ui.assetPath("heart.png") + source: "../heart.png" anchors.horizontalCenter: parent.horizontalCenter MouseArea { anchors.fill: parent |