Feat: add hidden mode and new documentation
Some checks failed
Deploy Website / deploy (push) Failing after 29s

This commit is contained in:
2026-02-26 12:31:56 +01:00
parent 8af17c01d8
commit b728b38d6e
95 changed files with 1055 additions and 286 deletions

View File

@@ -281,6 +281,7 @@ fn main() -> io::Result<()> {
app.metrics.event_count = seq_snapshot.event_count;
app.flush_dirty_patterns(&sequencer.cmd_tx);
app.flush_dirty_script(&sequencer.cmd_tx);
app.flush_queued_changes(&sequencer.cmd_tx);
let had_event = event::poll(Duration::from_millis(
@@ -322,6 +323,8 @@ fn main() -> io::Result<()> {
if app.editor_ctx.show_stack {
services::stack_preview::update_cache(&app.editor_ctx);
}
} else if app.page == page::Page::Script && app.script_editor.focused {
app.script_editor.editor.insert_str(&text);
}
}
_ => {}