updates
Some checks are pending
CI / matrix (push) Waiting to run
CI / ${{ matrix.check }} (push) Blocked by required conditions
CI / build (push) Blocked by required conditions
CI / build-nixpkgs (push) Blocked by required conditions

This commit is contained in:
Robin Appelman 2024-11-04 16:45:32 +01:00
commit 1af4aa6de9
4 changed files with 182 additions and 203 deletions

View file

@ -143,7 +143,7 @@ fn ui(frame: &mut Frame, app: &App, state: &mut UiState) {
Constraint::Percentage(100),
Constraint::Length(1),
])
.split(frame.size());
.split(frame.area());
match state {
UiState::Quit => {}

View file

@ -23,7 +23,7 @@ impl<'a> ScrollbarTable<'a> {
ScrollbarTable {
table: Table::new(rows, widths)
.block(Block::new().borders(Borders::RIGHT))
.highlight_style(TABLE_SELECTED_STYLE)
.row_highlight_style(TABLE_SELECTED_STYLE)
.highlight_spacing(HighlightSpacing::Always),
scrollbar: Scrollbar::new(ScrollbarOrientation::VerticalRight)
.begin_symbol(Some(""))