diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-12 22:03:53 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-12 22:03:53 +0800 |
commit | 31fdc645ed9c6bfa63deb8a688888b6cacfd821e (patch) | |
tree | e6a67689ab4c0de391444591820edcb5744197d9 /cmd/mist/assets | |
parent | 3f6baa45a7fb1ae5fd7966d2763a2a776a65eb96 (diff) | |
download | go-tangerine-31fdc645ed9c6bfa63deb8a688888b6cacfd821e.tar go-tangerine-31fdc645ed9c6bfa63deb8a688888b6cacfd821e.tar.gz go-tangerine-31fdc645ed9c6bfa63deb8a688888b6cacfd821e.tar.bz2 go-tangerine-31fdc645ed9c6bfa63deb8a688888b6cacfd821e.tar.lz go-tangerine-31fdc645ed9c6bfa63deb8a688888b6cacfd821e.tar.xz go-tangerine-31fdc645ed9c6bfa63deb8a688888b6cacfd821e.tar.zst go-tangerine-31fdc645ed9c6bfa63deb8a688888b6cacfd821e.zip |
cmd + t switches to new dapp window
Diffstat (limited to 'cmd/mist/assets')
-rw-r--r-- | cmd/mist/assets/qml/main.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cmd/mist/assets/qml/main.qml b/cmd/mist/assets/qml/main.qml index d03ef43d9..2b56b7236 100644 --- a/cmd/mist/assets/qml/main.qml +++ b/cmd/mist/assets/qml/main.qml @@ -17,6 +17,7 @@ ApplicationWindow { // Use this to make the window frameless. But then you'll need to do move and resize by hand property var ethx : Eth.ethx + property var catalog; width: 1200 height: 820 @@ -39,7 +40,7 @@ ApplicationWindow { // Takes care of loading all default plugins Component.onCompleted: { - var catalog = addPlugin("./views/catalog.qml", {noAdd: true, close: false, section: "begin"}); + catalog = addPlugin("./views/catalog.qml", {noAdd: true, close: false, section: "begin"}); var wallet = addPlugin("./views/wallet.qml", {noAdd: true, close: false, section: "ethereum", active: true}); addPlugin("./views/miner.qml", {noAdd: true, close: false, section: "ethereum", active: true}); @@ -169,7 +170,7 @@ ApplicationWindow { text: "New tab" shortcut: "Ctrl+t" onTriggered: { - newBrowserTab("http://etherian.io"); + activeView(catalog.view, catalog.menuItem); } } |