Use small triangle arrow for playlist playing indicator
All checks were successful
Build and Release / build-and-release (push) Successful in 54s
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:
@@ -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)];
|
||||
|
||||
Reference in New Issue
Block a user