Skip to content

Commit

Permalink
Merge branch 'master' into features/issue_62_harman_installation_changes
Browse files Browse the repository at this point in the history
# Conflict fixed:
#	InstallerSharedCore/src/actionScripts/ui/FeathersUIWrapper.as
  • Loading branch information
rat-moonshine committed Jul 15, 2021
2 parents dabcf13 + 2e92e83 commit 525bff4
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,10 @@ package actionScripts.ui
if(this.stage != null && this.stage.focus != null && (this.stage.focus == this || this.contains(this.stage.focus))) {
return;
}
this._feathersUIFocusManager.enabled = false;

if(this._feathersUIFocusManager) {
this._feathersUIFocusManager.enabled = false;
}
}
}
}

0 comments on commit 525bff4

Please sign in to comment.