Skip to content

Commit

Permalink
Use row_highlight_style instead of deprecated highlight_style
Browse files Browse the repository at this point in the history
  • Loading branch information
jfernandez committed Feb 1, 2025
1 parent 1a616d7 commit b8948d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ fn render_table(f: &mut Frame, app: &mut App, area: Rect) {
.borders(Borders::ALL)
.title(" eBPF programs "),
)
.highlight_style(selected_style)
.row_highlight_style(selected_style)
.highlight_symbol(">> ");
f.render_stateful_widget(t, area, &mut app.table_state);
}
Expand Down

0 comments on commit b8948d2

Please sign in to comment.