refactor: remove unused fields from AudioPlayerState

This commit is contained in:
2026-01-24 22:34:25 +03:00
parent 3e6a8b6e79
commit bd75ac6190
2 changed files with 0 additions and 30 deletions
-11
View File
@@ -43,17 +43,6 @@ pub struct AudioPlayerState {
pub tracks: Vec<TrackInfo>,
pub current_file_path: PathBuf,
pub is_paused: bool,
pub looped: bool,
pub volume: f32,
pub new_volume: Option<f32>,
pub position: f32,
pub new_position: Option<f32>,
pub duration: f32,
pub current_input: String,
pub all_inputs: HashMap<String, String>,
}