diff options
author | Alexandre Van de Sande <alex.vandesande@ethdev.com> | 2015-02-17 18:52:22 +0800 |
---|---|---|
committer | Alexandre Van de Sande <alex.vandesande@ethdev.com> | 2015-02-17 18:52:22 +0800 |
commit | fbd5e4d5afeaff6c250a3a953b18476cdb4b86ae (patch) | |
tree | 305c4d211bc05be111675cb24e4fc8702da80437 /cmd/mist/assets/qml/main.qml | |
parent | 0de1d1dd588266961740b598da4e01e5efdf2d1f (diff) | |
download | go-tangerine-fbd5e4d5afeaff6c250a3a953b18476cdb4b86ae.tar go-tangerine-fbd5e4d5afeaff6c250a3a953b18476cdb4b86ae.tar.gz go-tangerine-fbd5e4d5afeaff6c250a3a953b18476cdb4b86ae.tar.bz2 go-tangerine-fbd5e4d5afeaff6c250a3a953b18476cdb4b86ae.tar.lz go-tangerine-fbd5e4d5afeaff6c250a3a953b18476cdb4b86ae.tar.xz go-tangerine-fbd5e4d5afeaff6c250a3a953b18476cdb4b86ae.tar.zst go-tangerine-fbd5e4d5afeaff6c250a3a953b18476cdb4b86ae.zip |
Updated icons
Diffstat (limited to 'cmd/mist/assets/qml/main.qml')
-rw-r--r-- | cmd/mist/assets/qml/main.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/mist/assets/qml/main.qml b/cmd/mist/assets/qml/main.qml index 0a8776345..9a6bf5273 100644 --- a/cmd/mist/assets/qml/main.qml +++ b/cmd/mist/assets/qml/main.qml @@ -41,12 +41,12 @@ ApplicationWindow { Component.onCompleted: { catalog = addPlugin("./views/catalog.qml", {noAdd: true, close: false, section: "begin", active: true}); - var wallet = addPlugin("./views/wallet.qml", {noAdd: true, close: false, section: "ethereum"}); var walletWeb = addPlugin("./views/browser.qml", {noAdd: true, close: false, section: "ethereum", active: false}); walletWeb.view.url = "http://ethereum-dapp-wallet.meteor.com/"; walletWeb.menuItem.title = "Wallet"; - + + addPlugin("./views/wallet.qml", {noAdd: true, close: false, section: "legacy"}); addPlugin("./views/miner.qml", {noAdd: true, close: false, section: "ethereum", active: false}); addPlugin("./views/transaction.qml", {noAdd: true, close: false, section: "legacy"}); addPlugin("./views/whisper.qml", {noAdd: true, close: false, section: "legacy"}); |