Skip to content

Commit

Permalink
Merge pull request #387 from orangebobolink/master
Browse files Browse the repository at this point in the history
Fix ResetLayout method
  • Loading branch information
wieslawsoltes authored Jan 27, 2025
2 parents 30293a3 + 9308b0a commit 36ee2a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/DockMvvmSample/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ public void ResetLayout()
var layout = _factory?.CreateLayout();
if (layout is not null)
{
Layout = layout;
_factory?.InitLayout(layout);
Layout = layout;
}
}
}

0 comments on commit 36ee2a0

Please sign in to comment.