1 Commits

Author SHA1 Message Date
b438065c23 Use small triangle arrow for playlist playing indicator
All checks were successful
Build and Release / build-and-release (push) Successful in 54s
Replace large arrow with small triangle (▸) to match the style
used for directory indicators before nerd fonts were introduced.
2025-12-12 13:08:00 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "cm-player" name = "cm-player"
version = "0.1.28" version = "0.1.29"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View File

@@ -322,7 +322,7 @@ fn render_right_panel(frame: &mut Frame, state: &mut AppState, area: Rect, _tab_
let is_playing = idx == state.playlist_index; let is_playing = idx == state.playlist_index;
// Add playing indicator arrow // Add playing indicator arrow
let indicator = if is_playing { " " } else { " " }; let indicator = if is_playing { " " } else { " " };
// Build line with search highlighting if searching // Build line with search highlighting if searching
let mut line_spans = vec![Span::raw(indicator)]; let mut line_spans = vec![Span::raw(indicator)];