mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
minng warning label when daemon not syncd
This commit is contained in:
parent
b4353a31ac
commit
adb47adf9b
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue