Banshee.Gui.Widgets.TrackInfoDisplay.LoadImage C# (CSharp) Method

LoadImage() private method

private LoadImage ( Banshee.Collection.TrackInfo track, bool force ) : void
track Banshee.Collection.TrackInfo
force bool
return void
        private void LoadImage (TrackInfo track, bool force)
        {
            LoadImage (track.MediaAttributes, track.ArtworkId, force);

            if (track == current_track) {
                if (current_image != null && current_image != incoming_image && !IsMissingImage (current_image)) {
                    ((IDisposable)current_image).Dispose ();
                }
                current_image = incoming_image;
            }
        }

Same methods

TrackInfoDisplay::LoadImage ( TrackMediaAttributes attr, string artwork_id, bool force ) : void