diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-22 02:23:09 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-22 02:23:09 +0800 |
commit | 7855a233a7ed4968d93fc76a74501c931574f6eb (patch) | |
tree | 84819a27c1950dcd88171de81146316ebf4711bc /ethereal/assets/qml | |
parent | ed73fc0be3abbaad31302be67ed4137140883de4 (diff) | |
parent | b8495471161a20d325671b56dd6f3243c8f2a075 (diff) | |
download | go-tangerine-0.6.4.tar go-tangerine-0.6.4.tar.gz go-tangerine-0.6.4.tar.bz2 go-tangerine-0.6.4.tar.lz go-tangerine-0.6.4.tar.xz go-tangerine-0.6.4.tar.zst go-tangerine-0.6.4.zip |
Merge branch 'release/0.6.4'v0.6.4
Diffstat (limited to 'ethereal/assets/qml')
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index 80481f1bc..90cc42a1f 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -157,6 +157,21 @@ ApplicationWindow { }) } } + + MenuSeparator {} + + MenuItem { + id: miningSpeed + text: "Mining: Turbo" + onTriggered: { + gui.toggleTurboMining() + if(text == "Mining: Turbo") { + text = "Mining: Normal"; + } else { + text = "Mining: Turbo"; + } + } + } } Menu { @@ -220,6 +235,15 @@ ApplicationWindow { Label { y: 6 + objectName: "miningLabel" + visible: true + font.pixelSize: 10 + anchors.right: lastBlockLabel.left + anchors.rightMargin: 5 + } + + Label { + y: 6 id: lastBlockLabel objectName: "lastBlockLabel" visible: true |