From f1770605eab46608fcee1abec04eb5ead2b27ab6 Mon Sep 17 00:00:00 2001 From: LukePulverenti Luke Pulverenti luke pulverenti Date: Sun, 16 Sep 2012 20:09:12 -0400 Subject: Added new icons and fixed some splash screen issues --- MediaBrowser.Common/UI/Splash.xaml | 2 +- MediaBrowser.Common/UI/Splash.xaml.cs | 15 ++++----------- 2 files changed, 5 insertions(+), 12 deletions(-) (limited to 'MediaBrowser.Common/UI') diff --git a/MediaBrowser.Common/UI/Splash.xaml b/MediaBrowser.Common/UI/Splash.xaml index 79085682ae..f52d9ddf1f 100644 --- a/MediaBrowser.Common/UI/Splash.xaml +++ b/MediaBrowser.Common/UI/Splash.xaml @@ -27,6 +27,6 @@ - diff --git a/MediaBrowser.Common/UI/Splash.xaml.cs b/MediaBrowser.Common/UI/Splash.xaml.cs index 68926a0632..fdd36396fe 100644 --- a/MediaBrowser.Common/UI/Splash.xaml.cs +++ b/MediaBrowser.Common/UI/Splash.xaml.cs @@ -1,8 +1,7 @@ -using System; -using System.Windows; -using MahApps.Metro.Controls; -using MediaBrowser.Common.Logging; +using MahApps.Metro.Controls; using MediaBrowser.Model.Progress; +using System; +using System.Windows; namespace MediaBrowser.Common.UI { @@ -21,13 +20,7 @@ namespace MediaBrowser.Common.UI void ProgressChanged(object sender, TaskProgress e) { - // If logging has loaded, put a message in the log. - if (Logger.LoggerInstance != null) - { - Logger.LogInfo(e.Description); - } - - lblProgress.Content = e.Description; + lblProgress.Text = e.Description; pbProgress.Value = (double)e.PercentComplete; } -- cgit v1.2.3