diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-10-17 14:38:48 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-10-23 20:23:47 +0200 |
| commit | 5becb32ba463d6b0ace914ab06bb237483a94fbc (patch) | |
| tree | 684efb242ddb04e71c54f9665cc59891f734e518 /src/layout/constraints.rs | |
| parent | c627847cb39572c08f3b53db07ea325ef0d352fa (diff) | |
Introduce page / block / inline levels
Diffstat (limited to 'src/layout/constraints.rs')
| -rw-r--r-- | src/layout/constraints.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layout/constraints.rs b/src/layout/constraints.rs index f88b2add..7dc16446 100644 --- a/src/layout/constraints.rs +++ b/src/layout/constraints.rs @@ -7,7 +7,7 @@ pub struct Constrained<T> { /// The item that is only valid if the constraints are fullfilled. pub item: T, /// Constraints on regions in which the item is valid. - pub constraints: Constraints, + pub cts: Constraints, } /// Describe regions that match them. |
