Skip to content

Commit

Permalink
(#890) Don't display splash screen on top
Browse files Browse the repository at this point in the history
  • Loading branch information
garas committed Nov 17, 2023
1 parent baabe9e commit 01642e2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ public SplashScreenService(IImageService imageService)
public void Show()
{
_splashScreen = new SplashScreen(_imageService.SplashScreenImageName);
_splashScreen.Show(true, true);
_splashScreen.Show(true);
}

public void Close(TimeSpan duration)
{
_splashScreen.Close(duration);
}
}
}
}

0 comments on commit 01642e2

Please sign in to comment.