diff options
Diffstat (limited to 'native/src/widget/row.rs')
| -rw-r--r-- | native/src/widget/row.rs | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/native/src/widget/row.rs b/native/src/widget/row.rs index c689ac13..108e98e4 100644 --- a/native/src/widget/row.rs +++ b/native/src/widget/row.rs @@ -134,6 +134,7 @@ where          &self,          tree: &mut Tree,          layout: Layout<'_>, +        renderer: &Renderer,          operation: &mut dyn Operation<Message>,      ) {          operation.container(None, &mut |operation| { @@ -142,7 +143,9 @@ where                  .zip(&mut tree.children)                  .zip(layout.children())                  .for_each(|((child, state), layout)| { -                    child.as_widget().operate(state, layout, operation); +                    child +                        .as_widget() +                        .operate(state, layout, renderer, operation);                  })          });      }  | 
