summaryrefslogtreecommitdiff
path: root/src/layout/node.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/layout/node.rs')
-rw-r--r--src/layout/node.rs9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/layout/node.rs b/src/layout/node.rs
index 31213b9d..4cba3d4f 100644
--- a/src/layout/node.rs
+++ b/src/layout/node.rs
@@ -24,13 +24,12 @@ impl LayoutNode {
}
}
-#[async_trait(?Send)]
impl Layout for LayoutNode {
- async fn layout(&self, ctx: &mut LayoutContext, areas: &Areas) -> Vec<Layouted> {
+ fn layout(&self, ctx: &mut LayoutContext, areas: &Areas) -> Vec<Layouted> {
match self {
- Self::Spacing(spacing) => spacing.layout(ctx, areas).await,
- Self::Text(text) => text.layout(ctx, areas).await,
- Self::Dyn(boxed) => boxed.layout(ctx, areas).await,
+ Self::Spacing(spacing) => spacing.layout(ctx, areas),
+ Self::Text(text) => text.layout(ctx, areas),
+ Self::Dyn(boxed) => boxed.layout(ctx, areas),
}
}
}