fix(AppMain): Show banner on startup if diconnected

This commit is contained in:
Igor Sirotin 2023-01-11 17:06:31 +03:00 committed by Igor Sirotin
parent ea0db55361
commit d98c462092
1 changed files with 5 additions and 0 deletions

View File

@ -566,6 +566,11 @@ Item {
processConnected() processConnected()
} }
Component.onCompleted: {
if (!isConnected)
processConnected()
}
Connections { Connections {
target: rootStore.aboutModuleInst target: rootStore.aboutModuleInst
onAppVersionFetched: { onAppVersionFetched: {