diff options
author | obscuren <geffobscura@gmail.com> | 2014-04-23 17:51:48 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-04-23 17:51:48 +0800 |
commit | b962779a1318138e08c6e84a537fdbc6c9ebfd97 (patch) | |
tree | 38ca5fe5bad13a0d947c38a13bb620ea8b80d2a9 /ethereal/assets | |
parent | a3c8f83562c7a740ac89e63bf36f2ce44ae6627a (diff) | |
download | dexon-b962779a1318138e08c6e84a537fdbc6c9ebfd97.tar.gz dexon-b962779a1318138e08c6e84a537fdbc6c9ebfd97.tar.zst dexon-b962779a1318138e08c6e84a537fdbc6c9ebfd97.zip |
Minor update and fixes to the gui and console
Diffstat (limited to 'ethereal/assets')
-rw-r--r-- | ethereal/assets/qml/newTransaction/_new_contract.qml | 6 | ||||
-rw-r--r-- | ethereal/assets/qml/newTransaction/_simple_send.qml | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ethereal/assets/qml/newTransaction/_new_contract.qml b/ethereal/assets/qml/newTransaction/_new_contract.qml index abaac1695..29e26a562 100644 --- a/ethereal/assets/qml/newTransaction/_new_contract.qml +++ b/ethereal/assets/qml/newTransaction/_new_contract.qml @@ -135,18 +135,18 @@ Component { Button { id: txButton + /* enabled: false */ states: [ State { name: "READY" - PropertyChanges { target: txButton; enabled: true} + PropertyChanges { target: txButton; /*enabled: true*/} }, State { name: "NOTREADY" - PropertyChanges { target: txButton; enabled:false} + PropertyChanges { target: txButton; /*enabled:false*/} } ] text: "Send" - enabled: false onClicked: { //this.enabled = false var res = eth.createTx(txFuelRecipient.text, txValue.text, txGas.text, txGasPrice.text, codeView.text) diff --git a/ethereal/assets/qml/newTransaction/_simple_send.qml b/ethereal/assets/qml/newTransaction/_simple_send.qml index 981766160..d460797ea 100644 --- a/ethereal/assets/qml/newTransaction/_simple_send.qml +++ b/ethereal/assets/qml/newTransaction/_simple_send.qml @@ -63,18 +63,18 @@ Component { } Button { id: txSimpleButton + /*enabled: false*/ states: [ State { name: "READY" - PropertyChanges { target: txSimpleButton; enabled: true} + PropertyChanges { target: txSimpleButton; /*enabled: true*/} }, State { name: "NOTREADY" - PropertyChanges { target: txSimpleButton; enabled: false} + PropertyChanges { target: txSimpleButton; /*enabled: false*/} } ] text: "Send" - enabled: false onClicked: { //this.enabled = false var res = eth.createTx(txSimpleRecipient.text, txSimpleValue.text,"","","") |