Start assembly serial number at zero

This commit is contained in:
Aaron Fenyes 2024-11-18 11:49:45 -08:00
parent 8daef5f71e
commit b479e57446

View File

@ -23,7 +23,7 @@ impl AppState {
fn new() -> AppState {
AppState {
assembly: Assembly::new(),
assembly_serial: create_signal(1),
assembly_serial: create_signal(0),
selection: create_signal(FxHashSet::default())
}
}