aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/qml/newTransaction/_new_contract.qml
diff options
context:
space:
mode:
Diffstat (limited to 'ethereal/assets/qml/newTransaction/_new_contract.qml')
-rw-r--r--ethereal/assets/qml/newTransaction/_new_contract.qml6
1 files changed, 3 insertions, 3 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)