1
mirror of https://github.com/monero-project/monero-gui synced 2025-01-05 19:56:26 +01:00

Merge pull request #1375

adb47ad minng warning label when daemon not syncd
This commit is contained in:
luigi1111 2018-05-11 16:59:06 -05:00
commit 4954491273
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

View File

@ -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