Updated icons

pull/324/head
Alexandre Van de Sande 10 years ago
parent 0de1d1dd58
commit fbd5e4d5af
  1. BIN
      cmd/mist/assets/miner.png
  2. BIN
      cmd/mist/assets/mining-icon.png
  3. BIN
      cmd/mist/assets/mining-icon@2x.png
  4. 4
      cmd/mist/assets/qml/main.qml
  5. 2
      cmd/mist/assets/qml/views/miner.qml
  6. 1
      cmd/mist/assets/qml/views/wallet.qml

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

@ -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"});

@ -9,7 +9,7 @@ import Ethereum 1.0
Rectangle {
id: root
property var title: "Miner"
property var iconSource: "../miner.png"
property var iconSource: "../mining-icon.png"
property var menuItem
color: "#00000000"

@ -9,7 +9,6 @@ import Ethereum 1.0
Rectangle {
id: root
property var title: "Wallet"
property var iconSource: "../facet.png"
property var menuItem
objectName: "walletView"

Loading…
Cancel
Save