diff options
| author | Eric Reed <ebr@mediabrowser3.com> | 2013-04-16 15:31:15 -0400 |
|---|---|---|
| committer | Eric Reed <ebr@mediabrowser3.com> | 2013-04-16 15:31:15 -0400 |
| commit | bc037652757c9d12c512135710b2691c03e2f593 (patch) | |
| tree | f56d220289e460e973578175924a94a37bd93820 /MediaBrowser.ServerApplication/Splash/SplashWindow.xaml.cs | |
| parent | eb9d11cf5748ccf6272c6b0462c8c9c12459e590 (diff) | |
Style splash window
Diffstat (limited to 'MediaBrowser.ServerApplication/Splash/SplashWindow.xaml.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/Splash/SplashWindow.xaml.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.ServerApplication/Splash/SplashWindow.xaml.cs b/MediaBrowser.ServerApplication/Splash/SplashWindow.xaml.cs index 3f471612f..db2f1dbc4 100644 --- a/MediaBrowser.ServerApplication/Splash/SplashWindow.xaml.cs +++ b/MediaBrowser.ServerApplication/Splash/SplashWindow.xaml.cs @@ -19,9 +19,10 @@ namespace MediaBrowser.ServerApplication.Splash /// </summary> public partial class SplashWindow : Window { - public SplashWindow() + public SplashWindow(Version version) { InitializeComponent(); + lblStatus.Text = string.Format("Loading Media Browser Server\nVersion {0}...", version); } } } |
