aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/qml/wallet.qml
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-08-22 02:13:38 +0800
committerobscuren <geffobscura@gmail.com>2014-08-22 02:13:38 +0800
commit6d171ff511785c70ad910a50a6538636d7b3cac9 (patch)
treeb1be432a75fc3d19cc9b5efa98f84a0d692068b4 /ethereal/assets/qml/wallet.qml
parent48a99d23cd1e01e0b5d8f072e85abbaa6da60d1b (diff)
downloaddexon-6d171ff511785c70ad910a50a6538636d7b3cac9.tar.gz
dexon-6d171ff511785c70ad910a50a6538636d7b3cac9.tar.zst
dexon-6d171ff511785c70ad910a50a6538636d7b3cac9.zip
Turbo mining flag
Diffstat (limited to 'ethereal/assets/qml/wallet.qml')
-rw-r--r--ethereal/assets/qml/wallet.qml24
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