diff --git a/src/layout/scrolling.rs b/src/layout/scrolling.rs index eaeb7751..aa1bcdb5 100644 --- a/src/layout/scrolling.rs +++ b/src/layout/scrolling.rs @@ -336,8 +336,8 @@ impl ScrollingSpace { } pub fn update_shaders(&mut self) { - for tile in self.tiles_mut() { - tile.update_shaders(); + for col in &mut self.columns { + col.update_shaders(); } } @@ -4056,6 +4056,14 @@ impl Column { } } + pub fn update_shaders(&mut self) { + for tile in &mut self.tiles { + tile.update_shaders(); + } + + self.tab_indicator.update_shaders(); + } + pub fn advance_animations(&mut self) { if let Some(move_) = &mut self.move_animation { if move_.anim.is_done() {