mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-08 12:57:25 -04:00
Improved blockchain sync status ui
This commit is contained in:
@@ -48,8 +48,11 @@ Row {
|
||||
}
|
||||
|
||||
function getConnectionStatusString(status) {
|
||||
if (status == Wallet.ConnectionStatus_Connected)
|
||||
if (status == Wallet.ConnectionStatus_Connected) {
|
||||
if(!appWindow.daemonSynced)
|
||||
return qsTr("Synchronizing")
|
||||
return qsTr("Connected")
|
||||
}
|
||||
if (status == Wallet.ConnectionStatus_WrongVersion)
|
||||
return qsTr("Wrong version")
|
||||
if (status == Wallet.ConnectionStatus_Disconnected)
|
||||
|
||||
Reference in New Issue
Block a user