Skip to content

Commit

Permalink
FeathersUIWrapper: update to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Jul 14, 2021
1 parent 0c0e3bf commit 2e92e83
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions InstallerSharedCore/src/actionScripts/ui/FeathersUIWrapper.as
Original file line number Diff line number Diff line change
Expand Up @@ -326,11 +326,12 @@ package actionScripts.ui

protected function feathersUIWrapper_focusOutHandler(event:FocusEvent):void
{
if(this.stage != null && this.stage.focus != null && this.contains(this.stage.focus)) {
if(this.stage != null && this.stage.focus != null && (this.stage.focus == this || this.contains(this.stage.focus))) {
return;
}
this._feathersUIFocusManager.focus = null;
this._feathersUIFocusManager.enabled = false;
if(this._feathersUIFocusManager) {
this._feathersUIFocusManager.enabled = false;
}
}
}
}

0 comments on commit 2e92e83

Please sign in to comment.