Skip to content

Commit

Permalink
make ShowShell() method protected virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
mkhomutov committed Jul 29, 2024
1 parent 55db546 commit 57bc2ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Orchestra.Shell.Shared/Services/ShellService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ protected virtual async Task<TShell> CreateShellAsync<TShell>()
partial void OnCreatedShell();

[Time]
private void ShowShell(IShell shell)
protected virtual void ShowShell(IShell shell)
{
if (!_applicationInitializationService.ShowShell)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ namespace Orchestra.Services
where TShell : class, Orchestra.Views.IShell { }
protected virtual System.Threading.Tasks.Task<TShell> CreateShellAsync<TShell>()
where TShell : Orchestra.Views.IShell { }
protected virtual void ShowShell(Orchestra.Views.IShell shell) { }
}
public class XamlResourceService : Orchestra.Services.IXamlResourceService
{
Expand Down

0 comments on commit 57bc2ac

Please sign in to comment.