unsubscribe timeline on deletion

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2024-10-07 13:44:35 -04:00
parent 1bf9d5d934
commit 0d994172a0
2 changed files with 20 additions and 0 deletions

View File

@@ -149,6 +149,11 @@ impl Columns {
.1
}
pub fn find_timeline_for_column_index(&self, ind: usize) -> Option<&Timeline> {
let col_id = self.get_column_id_at_index(ind);
self.timelines.get(&col_id)
}
pub fn select_down(&mut self) {
warn!("todo: implement select_down");
}