Auto docs

This commit is contained in:
2026-01-20 17:48:24 +01:00
parent f7797664bd
commit 8b0b98024a
14 changed files with 1909 additions and 520 deletions

View File

@@ -286,7 +286,7 @@ fn render_patterns(frame: &mut Frame, app: &App, snapshot: &SequencerSnapshot, a
// Column 2: length
let length_line = Line::from(vec![
Span::styled("Length: ", bold_style),
Span::styled(format!("{}", length), base_style),
Span::styled(format!("{length}"), base_style),
]);
frame.render_widget(Paragraph::new(length_line), length_area);