feat(GODT-2540): notify user of wrong IMAP password.

This commit is contained in:
Xavier Michelon
2023-04-25 18:39:23 +02:00
parent 543c35041d
commit 6a6ead8e6d
9 changed files with 128 additions and 36 deletions

View File

@ -95,9 +95,11 @@ ApplicationWindow {
root.showAndRise()
}
function onSelectUser(userID) {
function onSelectUser(userID, forceShowWindow) {
contentWrapper.selectUser(userID)
root.showAndRise()
if (forceShowWindow) {
root.showAndRise()
}
}
}