mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-26 17:40:30 +01:00
Added new icons and fixed some splash screen issues
This commit is contained in:
parent
373ee6f7ec
commit
f1770605ea
@@ -27,6 +27,6 @@
|
||||
<Grid Name="splashGrid">
|
||||
<Image x:Name="imgLogo" HorizontalAlignment="Left" VerticalAlignment="Top" Stretch="Uniform" Grid.Row="0" Margin="10 10 10 10" Source="../Resources/Images/mblogoblack.png"/>
|
||||
<ProgressBar Name="pbProgress" Minimum="0" Maximum="100" HorizontalAlignment="Left" Height="24" Margin="30,110,30,0" Width="460" Grid.Row="1"/>
|
||||
<Label Name="lblProgress" Content="Label" Margin="0,190,10,0" VerticalContentAlignment="Center" HorizontalAlignment="Center" Grid.Row="2"/>
|
||||
<TextBlock Name="lblProgress" Margin="0,190,10,0" VerticalAlignment="Center" HorizontalAlignment="Center" Grid.Row="2" FontSize="18" Foreground="Black" Text="Label"></TextBlock>
|
||||
</Grid>
|
||||
</Controls:MetroWindow>
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user