aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/App.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.ServerApplication/App.xaml.cs')
-rw-r--r--MediaBrowser.ServerApplication/App.xaml.cs13
1 files changed, 2 insertions, 11 deletions
diff --git a/MediaBrowser.ServerApplication/App.xaml.cs b/MediaBrowser.ServerApplication/App.xaml.cs
index 839841620..2186a19f8 100644
--- a/MediaBrowser.ServerApplication/App.xaml.cs
+++ b/MediaBrowser.ServerApplication/App.xaml.cs
@@ -124,19 +124,10 @@ namespace MediaBrowser.ServerApplication
_mainWindow = win;
}
- private void HideMainWindow()
- {
- if (_mainWindow != null)
- {
- _mainWindow.Hide();
- _mainWindow = null;
- }
- }
-
- private SplashWindow _splashWindow;
+ private SplashForm _splashWindow;
private void ShowSplashWindow(Progress<double> progress)
{
- var win = new SplashWindow(_appHost.ApplicationVersion, progress);
+ var win = new SplashForm(_appHost.ApplicationVersion, progress);
win.Show();
_splashWindow = win;