remove highlight symbols

This commit is contained in:
krolxon 2024-05-06 11:21:23 +05:30
parent b04423d18d
commit c15bb2275f
1 changed files with 0 additions and 5 deletions

View File

@ -136,7 +136,6 @@ fn draw_directory_browser(frame: &mut Frame, app: &mut App, size: Rect) {
.fg(Color::Cyan) .fg(Color::Cyan)
.bg(Color::Black), .bg(Color::Black),
) )
.highlight_symbol(">>")
.header(header) .header(header)
.flex(layout::Flex::Legacy); .flex(layout::Flex::Legacy);
@ -218,7 +217,6 @@ fn draw_queue(frame: &mut Frame, app: &mut App, size: Rect) {
.fg(Color::Cyan) .fg(Color::Cyan)
.bg(Color::Black), .bg(Color::Black),
) )
.highlight_symbol(">>")
.header(header) .header(header)
.flex(layout::Flex::Legacy); .flex(layout::Flex::Legacy);
@ -335,7 +333,6 @@ fn draw_playlist_viewer(frame: &mut Frame, app: &mut App, area: Rect) {
.add_modifier(Modifier::BOLD) .add_modifier(Modifier::BOLD)
.add_modifier(Modifier::REVERSED), .add_modifier(Modifier::REVERSED),
) )
.highlight_symbol(">>")
.repeat_highlight_symbol(true); .repeat_highlight_symbol(true);
state.select(Some(app.pl_list.index)); state.select(Some(app.pl_list.index));
frame.render_stateful_widget(list, layouts[0], &mut state); frame.render_stateful_widget(list, layouts[0], &mut state);
@ -374,7 +371,6 @@ fn draw_playlist_viewer(frame: &mut Frame, app: &mut App, area: Rect) {
.fg(Color::Cyan) .fg(Color::Cyan)
.bg(Color::Black), .bg(Color::Black),
) )
.highlight_symbol(">>")
.flex(layout::Flex::SpaceBetween); .flex(layout::Flex::SpaceBetween);
frame.render_widget(table, layouts[1]); frame.render_widget(table, layouts[1]);
} }
@ -394,7 +390,6 @@ fn draw_add_to_playlist(frame: &mut Frame, app: &mut App, area: Rect) {
.add_modifier(Modifier::BOLD) .add_modifier(Modifier::BOLD)
.add_modifier(Modifier::REVERSED), .add_modifier(Modifier::REVERSED),
) )
.highlight_symbol(">>")
.repeat_highlight_symbol(true); .repeat_highlight_symbol(true);
state.select(Some(app.append_list.index)); state.select(Some(app.append_list.index));