aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/qml/views
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-08-21 05:52:33 +0800
committerobscuren <geffobscura@gmail.com>2014-08-21 05:52:33 +0800
commit7c65560f20d31f4b56cce3d3f8aee918c03dba14 (patch)
treef2dd4ed70b07714ee824dd3651c894add3457976 /ethereal/assets/qml/views
parent245ffb1123b58bc63ee8eae6b5250001c4a427c8 (diff)
downloadgo-tangerine-7c65560f20d31f4b56cce3d3f8aee918c03dba14.tar
go-tangerine-7c65560f20d31f4b56cce3d3f8aee918c03dba14.tar.gz
go-tangerine-7c65560f20d31f4b56cce3d3f8aee918c03dba14.tar.bz2
go-tangerine-7c65560f20d31f4b56cce3d3f8aee918c03dba14.tar.lz
go-tangerine-7c65560f20d31f4b56cce3d3f8aee918c03dba14.tar.xz
go-tangerine-7c65560f20d31f4b56cce3d3f8aee918c03dba14.tar.zst
go-tangerine-7c65560f20d31f4b56cce3d3f8aee918c03dba14.zip
Changed icon source
Diffstat (limited to 'ethereal/assets/qml/views')
-rw-r--r--ethereal/assets/qml/views/chain.qml2
-rw-r--r--ethereal/assets/qml/views/history.qml2
-rw-r--r--ethereal/assets/qml/views/info.qml2
-rw-r--r--ethereal/assets/qml/views/javascript.qml2
-rw-r--r--ethereal/assets/qml/views/pending_tx.qml2
-rw-r--r--ethereal/assets/qml/views/transaction.qml2
-rw-r--r--ethereal/assets/qml/views/wallet.qml4
7 files changed, 8 insertions, 8 deletions
diff --git a/ethereal/assets/qml/views/chain.qml b/ethereal/assets/qml/views/chain.qml
index b94d9edca..9eaa49db1 100644
--- a/ethereal/assets/qml/views/chain.qml
+++ b/ethereal/assets/qml/views/chain.qml
@@ -9,7 +9,7 @@ import Ethereum 1.0
Rectangle {
id: root
property var title: "Network"
- property var iconFile: "../net.png"
+ property var iconSource: "../net.png"
property var secondary: "Hi"
property var menuItem
diff --git a/ethereal/assets/qml/views/history.qml b/ethereal/assets/qml/views/history.qml
index d8c932f8f..9eee883e3 100644
--- a/ethereal/assets/qml/views/history.qml
+++ b/ethereal/assets/qml/views/history.qml
@@ -7,7 +7,7 @@ import QtQuick.Controls.Styles 1.1
import Ethereum 1.0
Rectangle {
- property var iconFile: "../tx.png"
+ property var iconSource: "../tx.png"
property var title: "Transactions"
property var menuItem
diff --git a/ethereal/assets/qml/views/info.qml b/ethereal/assets/qml/views/info.qml
index c4486aa6c..ca6ca077e 100644
--- a/ethereal/assets/qml/views/info.qml
+++ b/ethereal/assets/qml/views/info.qml
@@ -8,7 +8,7 @@ import Ethereum 1.0
Rectangle {
property var title: "Information"
- property var iconFile: "../heart.png"
+ property var iconSource: "../heart.png"
property var menuItem
objectName: "infoView"
diff --git a/ethereal/assets/qml/views/javascript.qml b/ethereal/assets/qml/views/javascript.qml
index aa5f93547..ea05c4148 100644
--- a/ethereal/assets/qml/views/javascript.qml
+++ b/ethereal/assets/qml/views/javascript.qml
@@ -8,7 +8,7 @@ import Ethereum 1.0
Rectangle {
property var title: "JavaScript"
- property var iconFile: "../tx.png"
+ property var iconSource: "../tx.png"
property var menuItem
objectName: "javascriptView"
diff --git a/ethereal/assets/qml/views/pending_tx.qml b/ethereal/assets/qml/views/pending_tx.qml
index 8e3690cb9..abfa25790 100644
--- a/ethereal/assets/qml/views/pending_tx.qml
+++ b/ethereal/assets/qml/views/pending_tx.qml
@@ -8,7 +8,7 @@ import Ethereum 1.0
Rectangle {
property var title: "Pending Transactions"
- property var iconFile: "../tx.png"
+ property var iconSource: "../tx.png"
property var menuItem
objectName: "pendingTxView"
diff --git a/ethereal/assets/qml/views/transaction.qml b/ethereal/assets/qml/views/transaction.qml
index 640e02a4e..fb8ba8a6d 100644
--- a/ethereal/assets/qml/views/transaction.qml
+++ b/ethereal/assets/qml/views/transaction.qml
@@ -7,7 +7,7 @@ import QtQuick.Controls.Styles 1.1
import Ethereum 1.0
Rectangle {
- property var iconFile: "../new.png"
+ property var iconSource: "../new.png"
property var title: "New transaction"
property var menuItem
diff --git a/ethereal/assets/qml/views/wallet.qml b/ethereal/assets/qml/views/wallet.qml
index b626ff678..5e10a7022 100644
--- a/ethereal/assets/qml/views/wallet.qml
+++ b/ethereal/assets/qml/views/wallet.qml
@@ -9,14 +9,14 @@ import Ethereum 1.0
Rectangle {
id: root
property var title: "Wallet"
- property var iconFile: "../wallet.png"
+ property var iconSource: "../wallet.png"
property var menuItem
objectName: "walletView"
anchors.fill: parent
function onReady() {
- menuItem.secondary = eth.numberToHuman(eth.balanceAt(eth.key().address))
+ menuItem.secondaryTitle = eth.numberToHuman(eth.balanceAt(eth.key().address))
}
ListModel {