1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-16 10:51:42 +02:00

Set a list offset

This commit is contained in:
mo8it 2024-04-08 01:49:38 +02:00
parent 0bf3f7e01f
commit 05729b27a0

View File

@ -77,12 +77,15 @@ impl<'a> UiState<'a> {
.highlight_symbol("🦀")
.block(Block::default().borders(Borders::BOTTOM));
let selected = 0;
let selected = state_file.next_exercise_ind();
let table_state = TableState::default()
.with_offset(selected.saturating_sub(3))
.with_selected(Some(selected));
Self {
table,
selected,
table_state: TableState::default().with_selected(Some(selected)),
table_state,
last_ind: exercises.len() - 1,
message: String::with_capacity(128),
}