13
0

Canvas; items added to a box become layout sensitive

This commit is contained in:
Paul Davis 2024-11-05 14:54:39 -07:00
parent 370b045715
commit ba782dd097

View File

@ -414,6 +414,7 @@ Box::add (Item* i)
}
Item::add (i);
i->set_layout_sensitive (true);
queue_resize ();
}
@ -425,6 +426,7 @@ Box::add_front (Item* i)
}
Item::add_front (i);
i->set_layout_sensitive (true);
queue_resize ();
}