mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 22:32:49 +02:00
Case 20499 - Scripts that use AppUI don't call that.onClosed()
if the
script is restarted while the app is open
This commit is contained in:
parent
73cf51182e
commit
44b92c542b
1 changed files with 2 additions and 1 deletions
|
@ -353,10 +353,11 @@ function AppUi(properties) {
|
|||
// Close if necessary, clean up any remaining handlers, and remove the button.
|
||||
GlobalServices.myUsernameChanged.disconnect(restartNotificationPoll);
|
||||
GlobalServices.findableByChanged.disconnect(restartNotificationPoll);
|
||||
that.tablet.screenChanged.disconnect(that.onScreenChanged);
|
||||
if (that.isOpen) {
|
||||
that.close();
|
||||
that.onScreenChanged("", "");
|
||||
}
|
||||
that.tablet.screenChanged.disconnect(that.onScreenChanged);
|
||||
if (that.button) {
|
||||
if (that.onClicked) {
|
||||
that.button.clicked.disconnect(that.onClicked);
|
||||
|
|
Loading…
Reference in a new issue