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
At the moment, an Edge::Position is only added between the widget which we're relatively placed to along the X axis, even if we're also relatively positioned to a widget on the Y axis. We need to add an axis field to the Edge::Position variant - something like pub enum Axis { X, Y }.
This is currently causing buggy behaviour in scrolling.
The text was updated successfully, but these errors were encountered:
…g on both X and Y axes. ClosesPistonDevelopers#660. Also update graph modules to latest scrolling simplification changes. Simplify scroll_offset function in algo.rs. Properly consider currently updated widgets during calculation of bounding_box.
…lling methods to scroll_kids for clarity of behaviour. Change pre_update_cache args to consider relative positioning across both axes in accordance with PistonDevelopers#660 changes.
At the moment, an
Edge::Position
is only added between the widget which we're relatively placed to along the X axis, even if we're also relatively positioned to a widget on the Y axis. We need to add an axis field to theEdge::Position
variant - something likepub enum Axis { X, Y }
.This is currently causing buggy behaviour in scrolling.
The text was updated successfully, but these errors were encountered: