Skip to content

Commit

Permalink
Merge pull request #156 from huntercfreeman/v0.8.1_bugs
Browse files Browse the repository at this point in the history
FIX-BUG: NRE on textEditorGroup.TextEditorService
  • Loading branch information
Luthetus authored Mar 18, 2024
2 parents d1c237d + 6bd79c7 commit 5234671
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ private async void TextEditorViewModelStateWrapOnStateChanged(object? sender, Ev

private ImmutableArray<ITab> GetTabList(TextEditorGroup textEditorGroup)
{
var viewModelState = TextEditorViewModelStateWrap.Value;
textEditorGroup.TextEditorService = TextEditorService;

var viewModelState = TextEditorViewModelStateWrap.Value;
var tabList = new List<ITab>();

foreach (var viewModelKey in textEditorGroup.ViewModelKeyList)
Expand Down

0 comments on commit 5234671

Please sign in to comment.