diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-02-09 17:45:04 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-02-09 18:15:39 +0100 |
| commit | 642e149464341e3cf1856dda51d7f7a5b387081e (patch) | |
| tree | 8f03a2e9811eb5a283eb9fed9d70931412e32086 /src/layout | |
| parent | 5a0e7cc36107c03001696b6dfbfdeb47abd2aeac (diff) | |
Incremental bug fixes
Co-Authored-By: Martin Haug <mhaug@live.de>
Diffstat (limited to 'src/layout')
| -rw-r--r-- | src/layout/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layout/mod.rs b/src/layout/mod.rs index 139d027a..7755f84c 100644 --- a/src/layout/mod.rs +++ b/src/layout/mod.rs @@ -172,7 +172,7 @@ impl Layout for LayoutNode { let styles = styles.barred(self.id()); #[cfg(not(feature = "layout-cache"))] - return self.node.layout(ctx, regions, styles); + return self.0.layout(ctx, regions, styles); #[cfg(feature = "layout-cache")] let hash = { |
