From fe427bc7f4f1a709c43c8ecb035b07325ed710b9 Mon Sep 17 00:00:00 2001 From: LukePulverenti Luke Pulverenti luke pulverenti Date: Mon, 17 Sep 2012 14:47:51 -0400 Subject: Removed progress value from startup --- MediaBrowser.Common/UI/Splash.xaml | 7 ++++--- MediaBrowser.Common/UI/Splash.xaml.cs | 3 +-- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'MediaBrowser.Common/UI') diff --git a/MediaBrowser.Common/UI/Splash.xaml b/MediaBrowser.Common/UI/Splash.xaml index f52d9ddf1f..7781841b26 100644 --- a/MediaBrowser.Common/UI/Splash.xaml +++ b/MediaBrowser.Common/UI/Splash.xaml @@ -3,7 +3,7 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:Controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro" Title="MediaBrowser" - Height="280" + Height="230" Width="520" ShowInTaskbar="True" ResizeMode="NoResize" @@ -26,7 +26,8 @@ - - + + + diff --git a/MediaBrowser.Common/UI/Splash.xaml.cs b/MediaBrowser.Common/UI/Splash.xaml.cs index fdd36396fe..b9764c05fd 100644 --- a/MediaBrowser.Common/UI/Splash.xaml.cs +++ b/MediaBrowser.Common/UI/Splash.xaml.cs @@ -20,8 +20,7 @@ namespace MediaBrowser.Common.UI void ProgressChanged(object sender, TaskProgress e) { - lblProgress.Text = e.Description; - pbProgress.Value = (double)e.PercentComplete; + lblProgress.Text = e.Description + "..."; } private void SplashLoaded(object sender, RoutedEventArgs e) -- cgit v1.2.3