diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-04-28 08:58:18 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-05-01 14:09:28 +0200 |
commit | dc192172addea61fb68e42265cea6f4cf9bcfec8 (patch) | |
tree | f003b442f6e566dca3e9f97835773c404b8dccb8 /components/layout/construct.rs | |
parent | 3e3bd9c728aa0a08b7d23dfb9ea7a28c6e4e409f (diff) | |
download | servo-dc192172addea61fb68e42265cea6f4cf9bcfec8.tar.gz servo-dc192172addea61fb68e42265cea6f4cf9bcfec8.zip |
Clean up debug options
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r-- | components/layout/construct.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs index c17d52dd155..c3ebed7d1a3 100644 --- a/components/layout/construct.rs +++ b/components/layout/construct.rs @@ -2068,7 +2068,7 @@ impl FlowRef { /// All flows must be finished at some point, or they will not have their intrinsic inline-sizes /// properly computed. (This is not, however, a memory safety problem.) fn finish(&mut self) { - if !opts::get().bubble_inline_sizes_separately { + if !opts::get().debug.bubble_inline_sizes_separately { FlowRef::deref_mut(self).bubble_inline_sizes(); FlowRef::deref_mut(self) .mut_base() |