diff options
Diffstat (limited to 'library/src/structure/table.rs')
| -rw-r--r-- | library/src/structure/table.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/src/structure/table.rs b/library/src/structure/table.rs index fbf1c7c0..8c6191be 100644 --- a/library/src/structure/table.rs +++ b/library/src/structure/table.rs @@ -58,11 +58,11 @@ impl TableNode { } impl Show for TableNode { - fn unguard_parts(&self, sel: Selector) -> Content { + fn unguard_parts(&self, id: RecipeId) -> Content { Self { tracks: self.tracks.clone(), gutter: self.gutter.clone(), - cells: self.cells.iter().map(|cell| cell.unguard(sel)).collect(), + cells: self.cells.iter().map(|cell| cell.unguard(id)).collect(), } .pack() } |
