Fix: Invalidate playlist window when (un)shuffling playlist.

This commit is contained in:
Peter Nelson 2023-11-27 12:52:30 +00:00 committed by Peter Nelson
parent 4c6ccb5248
commit 6c91c4b99d
1 changed files with 2 additions and 0 deletions

View File

@ -197,6 +197,7 @@ void MusicSystem::Shuffle()
if (_settings_client.music.playing) this->Play();
InvalidateWindowData(WC_MUSIC_TRACK_SELECTION, 0);
InvalidateWindowData(WC_MUSIC_WINDOW, 0);
}
@ -208,6 +209,7 @@ void MusicSystem::Unshuffle()
if (_settings_client.music.playing) this->Play();
InvalidateWindowData(WC_MUSIC_TRACK_SELECTION, 0);
InvalidateWindowData(WC_MUSIC_WINDOW, 0);
}