diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-05-11 16:59:06 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-05-11 16:59:06 -0500 |
| commit | 4954491273dbda6b363ef5504565a9121afef75e (patch) | |
| tree | 6dbb0f960d6dc515f6fb0e4fdd744892bf3d710b | |
| parent | 4c2640d4b3519cede86f4392c4e3a29d6ee5a377 (diff) | |
| parent | adb47adf9b12e3e2686593be452cec2ca0c9de5d (diff) | |
| download | monzero-gui-4954491273dbda6b363ef5504565a9121afef75e.tar.gz monzero-gui-4954491273dbda6b363ef5504565a9121afef75e.tar.xz monzero-gui-4954491273dbda6b363ef5504565a9121afef75e.zip | |
Merge pull request #1375
adb47ad minng warning label when daemon not syncd
| -rw-r--r-- | pages/Mining.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pages/Mining.qml b/pages/Mining.qml index f27a2b19..0b67028c 100644 --- a/pages/Mining.qml +++ b/pages/Mining.qml @@ -68,6 +68,14 @@ Rectangle { text: qsTr("(only available for local daemons)") visible: !walletManager.isDaemonLocal(appWindow.currentDaemonAddress) } + + Label { + id: soloSyncedLabel + fontSize: 18 + color: "#D02020" + text: qsTr("Your daemon must be synchronized before you can start mining") + visible: walletManager.isDaemonLocal(appWindow.currentDaemonAddress) && !appWindow.daemonSynced + } Text { id: soloMainLabel |
