Stop storing display lists in an Arc

This commit is contained in:
Patrick Walton 2019-06-04 21:21:31 -07:00 committed by Josh Matthews
parent 7ca570dd1d
commit 6b9924bec4
2 changed files with 5 additions and 8 deletions

View file

@ -51,7 +51,7 @@ pub struct LayoutThreadData {
pub constellation_chan: IpcSender<ConstellationMsg>,
/// The root stacking context.
pub display_list: Option<Arc<DisplayList>>,
pub display_list: Option<DisplayList>,
pub indexable_text: IndexableText,