diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-14 06:18:37 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-14 06:18:37 +0800 |
commit | 95ba340d07a02da40000d4bcf2b1bb24bd7856ef (patch) | |
tree | 79a067c70f5a1624c87b17c8efed02d160a0b0b8 /ethereal/assets/qml/wallet.qml | |
parent | d518423b9c493bf5b42e6575db9a32106812e6bc (diff) | |
download | dexon-95ba340d07a02da40000d4bcf2b1bb24bd7856ef.tar.gz dexon-95ba340d07a02da40000d4bcf2b1bb24bd7856ef.tar.zst dexon-95ba340d07a02da40000d4bcf2b1bb24bd7856ef.zip |
Tweaks and fixes + added webview debugger
* Require better icons .. someone? :-)
Diffstat (limited to 'ethereal/assets/qml/wallet.qml')
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index 3fc9a024c..769edfc6a 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -24,6 +24,7 @@ ApplicationWindow { var chainView = addPlugin("./views/chain.qml", {title: "Block chain"}) var infoView = addPlugin("./views/info.qml", {title: "Info"}) var pendingTxView = addPlugin("./views/pending_tx.qml", {title: "Pending", canClose: true}) + var pendingTxView = addPlugin("./views/javascript.qml", {title: "JavaScript", canClose: true}) // Call the ready handler gui.done() @@ -259,8 +260,8 @@ ApplicationWindow { ********************/ Rectangle { id: menu - Layout.minimumWidth: 180 - Layout.maximumWidth: 180 + Layout.minimumWidth: 80 + Layout.maximumWidth: 80 anchors.top: parent.top color: "#252525" @@ -398,9 +399,9 @@ ApplicationWindow { function importApp(path) { var ext = path.split('.').pop() if(ext == "html" || ext == "htm") { - ui.openHtml(path) + eth.openHtml(path) }else if(ext == "qml"){ - ui.openQml(path) + eth.openQml(path) } } |