partially fix Split component

This commit is contained in:
🪞👃🪞 2024-10-06 05:00:35 +03:00
parent 5b0feddbcb
commit 0e6ad98fa5
2 changed files with 12 additions and 24 deletions

View file

@ -16,10 +16,9 @@ impl Content for Arranger<Tui> {
add(&arrangement.split(
direction,
20,
self.phrases.clone()
.split(direction.ccw(), 20, sequencer)
.min_y(20)
))
self.phrases.clone().debug()
.split(direction.ccw(), 20, sequencer.debug())
.min_y(20)).debug())
} else {
add(&self.arrangement)
}
@ -30,7 +29,7 @@ impl Content for Arranger<Tui> {
//add(modal as &dyn Widget<Engine = Tui>)?;
}
Ok(())
})
}).debug()
}
}