mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
canvas: when an item has its bbox marked dirty, this should propagate to all parents
This commit is contained in:
parent
d54d63da3a
commit
c75ceb31ab
16 changed files with 71 additions and 58 deletions
|
|
@ -53,7 +53,7 @@ Outline::set_outline_width (Distance width)
|
|||
if (width != _outline_width) {
|
||||
_self.begin_change ();
|
||||
_outline_width = width;
|
||||
_self._bounding_box_dirty = true;
|
||||
_self.set_bbox_dirty ();
|
||||
_self.end_change ();
|
||||
}
|
||||
}
|
||||
|
|
@ -64,7 +64,7 @@ Outline::set_outline (bool outline)
|
|||
if (outline != _outline) {
|
||||
_self.begin_change ();
|
||||
_outline = outline;
|
||||
_self._bounding_box_dirty = true;
|
||||
_self.set_bbox_dirty ();
|
||||
_self.end_change ();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue