diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-11-29 12:06:38 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-11-29 12:06:38 +0100 |
| commit | e36b8ed374423816876273f30b77eee38cb8b74c (patch) | |
| tree | 0fc976a6bc91c56926d4c9af1ce05cb0e0556a3e /src/library/align.rs | |
| parent | 50bd8634711507ead8491d8d0c2abad0481e6a83 (diff) | |
Layout bugfixes
Diffstat (limited to 'src/library/align.rs')
| -rw-r--r-- | src/library/align.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/align.rs b/src/library/align.rs index a2881cce..18920369 100644 --- a/src/library/align.rs +++ b/src/library/align.rs @@ -61,7 +61,7 @@ impl Layout for AlignNode { // Set constraints. cts.expand = regions.expand; cts.base = base.filter(cts.base.map_is_some()); - cts.exact = current.filter(regions.expand); + cts.exact = current.filter(regions.expand | cts.exact.map_is_some()); } frames |
