mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-10 03:42:05 +02:00
Merge pull request #1375
adb47ad
minng warning label when daemon not syncd
This commit is contained in:
commit
4954491273
@ -68,6 +68,14 @@ Rectangle {
|
|||||||
text: qsTr("(only available for local daemons)")
|
text: qsTr("(only available for local daemons)")
|
||||||
visible: !walletManager.isDaemonLocal(appWindow.currentDaemonAddress)
|
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 {
|
Text {
|
||||||
id: soloMainLabel
|
id: soloMainLabel
|
||||||
|
Loading…
Reference in New Issue
Block a user