Feat: ability to rename steps

This commit is contained in:
2026-01-30 11:58:16 +01:00
parent d25b1317fc
commit 77a6aa9eb7
9 changed files with 149 additions and 12 deletions

View File

@@ -79,6 +79,7 @@ pub struct CopiedStepData {
pub active: bool,
pub source: Option<usize>,
pub original_index: usize,
pub name: Option<String>,
}
impl EditorContext {

View File

@@ -39,6 +39,12 @@ pub enum Modal {
pattern: usize,
name: String,
},
RenameStep {
bank: usize,
pattern: usize,
step: usize,
name: String,
},
SetPattern {
field: PatternField,
input: String,