Skip to content

Commit

Permalink
Increased image resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
Kieran Bond committed Nov 28, 2019
1 parent ef6642c commit 9c31a4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MiniSpotify/MiniSpotify/Source/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ private async void UpdateDisplayImage(string a_artworkURL)
memory.Position = 0;
bmpImage.BeginInit();
bmpImage.StreamSource = memory;
bmpImage.DecodePixelWidth = 128;
bmpImage.DecodePixelHeight = 128;
bmpImage.DecodePixelWidth = 512;
bmpImage.DecodePixelHeight = 512;
bmpImage.CacheOption = BitmapCacheOption.OnLoad;
bmpImage.EndInit();
}
Expand Down

0 comments on commit 9c31a4a

Please sign in to comment.