restruct: 65e

This commit is contained in:
i do not exist 2026-06-23 22:02:09 +03:00
parent ae347eeef7
commit b3e9cde8a1
4 changed files with 38 additions and 49 deletions

View file

@ -61,12 +61,7 @@ pub trait ScenesView: HasEditor + HasSelection + HasSceneScroll + HasClipsSize +
fn view_scenes_names (&self) -> impl Draw<Tui> {
crate::view::view_scenes_names(
self.scenes_with_sizes()
)
}
fn view_scene_name <'a> (&'a self, index: usize, scene: &'a Scene) -> impl Draw<Tui> + 'a {
crate::view::view_scene_name(
self.selected(), self.editor(), index, scene
self.scenes_with_sizes(), self.selection(), self.editor(), self.is_editing()
)
}
fn scenes_with_sizes (&self) -> impl ScenesSizes<'_> {