diff options
author | obscuren <geffobscura@gmail.com> | 2014-03-05 17:44:33 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-03-05 17:44:33 +0800 |
commit | 827505985652ac164d1f670797396d0f46774fb2 (patch) | |
tree | b4267aa3d891edb4c608d46d3dc1cb86880d6f73 /qml/transactions.qml | |
parent | 833a1a4eab01392b69339762cf8fe443697138a2 (diff) | |
download | dexon-827505985652ac164d1f670797396d0f46774fb2.tar dexon-827505985652ac164d1f670797396d0f46774fb2.tar.gz dexon-827505985652ac164d1f670797396d0f46774fb2.tar.bz2 dexon-827505985652ac164d1f670797396d0f46774fb2.tar.lz dexon-827505985652ac164d1f670797396d0f46774fb2.tar.xz dexon-827505985652ac164d1f670797396d0f46774fb2.tar.zst dexon-827505985652ac164d1f670797396d0f46774fb2.zip |
Moved qml files, conform to the new server model.
QML files got moved to their own directories. QML now has a ui helper
which should find assets in the correct resource directory
Diffstat (limited to 'qml/transactions.qml')
-rw-r--r-- | qml/transactions.qml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/qml/transactions.qml b/qml/transactions.qml new file mode 100644 index 000000000..e9a035a85 --- /dev/null +++ b/qml/transactions.qml @@ -0,0 +1,9 @@ +import QtQuick 2.0 +import QtQuick.Controls 1.0; +import QtQuick.Layouts 1.0; + +Rectangle { + id: transactionView + visible: false + Text { text: "TX VIEW" } +} |