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.
This commit is contained in:
Christoffer Martinsson 2025-12-12 13:08:00 +01:00
parent 0fa26db116
commit b438065c23
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "cm-player"
version = "0.1.28"
version = "0.1.29"
edition = "2021"
[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;
// Add playing indicator arrow
let indicator = if is_playing { " " } else { " " };
let indicator = if is_playing { " " } else { " " };
// Build line with search highlighting if searching
let mut line_spans = vec![Span::raw(indicator)];