Skip to content

Commit

Permalink
fix(FocusManager): comment lazyItems fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisArasin authored and ChrisArasin committed Feb 29, 2024
1 parent a79f107 commit 3fa1dfb
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ export default class FocusManager extends Base {
x: this.itemPosX,
y: this.itemPosY
});

// This fixes an issue when trying to call set items if there are already items held in _lazyItems.
// Going to follow up on a review of this feature.
if (this._lazyItems) {
this._lazyItems = null;
}
Expand Down

0 comments on commit 3fa1dfb

Please sign in to comment.