set minimum track width

This commit is contained in:
🪞👃🪞 2024-10-19 01:10:59 +03:00
parent 0f6c09cf2b
commit 3010c9ef5d
2 changed files with 2 additions and 2 deletions

View file

@ -524,7 +524,7 @@ impl<E: Engine> ArrangementTrack<E> {
self.width += 1;
}
pub fn width_dec (&mut self) {
if self.width > 1 {
if self.width > 3 {
self.width -= 1;
}
}