Clear reflow flags after reflow.

This commit is contained in:
Clark Gaebel 2014-10-20 12:49:39 -07:00
parent a6f0159cb8
commit 5cd47c7670
3 changed files with 43 additions and 18 deletions

View file

@ -599,6 +599,10 @@ impl Descendants {
self.descendant_links.len()
}
pub fn is_empty(&self) -> bool {
self.descendant_links.is_empty()
}
pub fn push(&mut self, given_descendant: FlowRef) {
self.descendant_links.push(given_descendant);
}