goosemusic 1.2.0

A music player with YouTube search, local playback, and OS media controls
1
2
3
4
5
6
7
8
9
//! Transient state for the "add to playlist" picker overlay: the tracks
//! currently selected for adding and which track list they came from.

use crate::app::interaction::TrackListKind;

pub struct PlaylistPicker {
    pub indices: Vec<usize>,
    pub list: TrackListKind,
}