You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new Wrap widget looks kinda wonky when there are varying baselines. The layout() function should be refactored to return a new type that contains both a size and a baseline: Option<UPx>. This baseline should be propagated up by other widgets when laying out children that report back a baseline.
The text was updated successfully, but these errors were encountered:
Refs #88
This set of changes starts working towards supporting baseline
alignment. The Grid widget currently does not honor vertical align in
any way, but it in theory propagates the first row's baseline
information -- which will need to be adjusted if Baseline vertical
alignment is used.
Next step is to actually add Baseline and try to make it work. The set
of changes thus far was just so massive and I finally resolved all the
errors from this refactoring.
The new Wrap widget looks kinda wonky when there are varying baselines. The layout() function should be refactored to return a new type that contains both a size and a
baseline: Option<UPx>
. This baseline should be propagated up by other widgets when laying out children that report back a baseline.The text was updated successfully, but these errors were encountered: