mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Canvas: child_changed() API fix for Box
This commit is contained in:
parent
fc9840f2a9
commit
84afcb62c4
2 changed files with 3 additions and 3 deletions
|
|
@ -265,11 +265,11 @@ Box::add (Item* i)
|
|||
}
|
||||
|
||||
void
|
||||
Box::child_changed ()
|
||||
Box::child_changed (bool bbox_changed)
|
||||
{
|
||||
/* catch visibility and size changes */
|
||||
|
||||
Item::child_changed ();
|
||||
Item::child_changed (bbox_changed);
|
||||
reposition_children ();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ public:
|
|||
double top_padding, right_padding, bottom_padding, left_padding;
|
||||
double top_margin, right_margin, bottom_margin, left_margin;
|
||||
|
||||
void child_changed ();
|
||||
void child_changed (bool bbox_changed);
|
||||
private:
|
||||
Rectangle *self;
|
||||
bool collapse_on_hide;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue