Canvas: change API of Item::child_changed() to include bool indicate bounding_box change

This commit is contained in:
Paul Davis 2020-06-10 15:24:52 -06:00
parent d6fa458f3b
commit fc9840f2a9
4 changed files with 10 additions and 11 deletions

View file

@ -353,11 +353,11 @@ Grid::place (Item* i, double x, double y, double col_span, double row_span)
}
void
Grid::child_changed ()
Grid::child_changed (bool bbox_changed)
{
/* catch visibility and size changes */
Item::child_changed ();
Item::child_changed (bbox_changed);
reposition_children ();
}