Kevin Hester
02/17/2020, 6:33 PMModifier elements may be combined using `+` Order is significant; modifier elements to the left
* are applied before modifier elements to the right.
Does the last applied operator override previous modifers of the same type? i.e.
if I have something like
lA = LayoutSize(...)
lB = LayoutSize(...)
modifer = lA + lB
Is this doc saying that lB will be the layout size for the modifier?Mihai Popa
02/18/2020, 12:25 PM