GODT-1820: hide app windows and tray icon before initating app shutdown.

This commit is contained in:
Xavier Michelon
2022-08-26 08:02:44 +02:00
committed by Jakub
parent 9af1c1671c
commit 9786deef48
2 changed files with 3 additions and 1 deletions

View File

@ -89,6 +89,8 @@ QtObject {
}
onQuit: {
mainWindow.hide()
trayIcon.visible = false
Backend.quit()
}

View File

@ -295,8 +295,8 @@ Window {
colorScheme: root.colorScheme
text: qsTr("Quit Bridge")
onClicked: {
root.quit()
root.close()
root.quit()
}
}