Skip to content

Commit

Permalink
[Editor] Fix initialization of SpriteSheetEditorViewModel returning f…
Browse files Browse the repository at this point in the history
…alse
  • Loading branch information
Kryptos-FR committed Mar 2, 2024
1 parent 9cc2e6b commit 43364b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public override Task<bool> Initialize()
{
Cache = new SpriteEditorImageCache();
Initialized?.Invoke(this, EventArgs.Empty);
return Task.FromResult(false);
return Task.FromResult(true);
}

/// <inheritdoc />
Expand Down

0 comments on commit 43364b8

Please sign in to comment.