Skip to content

Commit

Permalink
Merge pull request #588 from zsoltk/fix-bounds-on-readd
Browse files Browse the repository at this point in the history
Set bounds on all new motion controllers
  • Loading branch information
zsoltk authored Sep 12, 2023
2 parents cf7a88b + 82a9927 commit e44deb5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@


### Fixed
-
- [#589](https://github.com/bumble-tech/appyx/pull/589) – Fix visibility resolution for elements that do not match parent's size
- [#586](https://github.com/bumble-tech/appyx/issues/586) – Fix `AppyxComponent` wrongly applying width and height modifier to children composables

- [#584](https://github.com/bumble-tech/appyx/pull/584) – Fix applying offset twice in `AppyxComponent`
- [#585](https://github.com/bumble-tech/appyx/pull/585) – Fix drag vs align
- [#571](https://github.com/bumble-tech/appyx/pull/571) – Avoid `MotionController` recreation
- [#587](https://github.com/bumble-tech/appyx/pull/587) – Fix `DraggableChildren` and rename it to `AppyxComponent`
- [#588](https://github.com/bumble-tech/appyx/pull/588) – Set bounds on all new motion controllers
- [#589](https://github.com/bumble-tech/appyx/pull/589) – Fix visibility resolution for elements that do not match parent's size


## 2.0.0-alpha04
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ open class BaseAppyxComponent<InteractionTarget : Any, ModelState : Any>(
}

private fun onMotionControllerReady(motionController: MotionController<InteractionTarget, ModelState>) {
motionController.updateBounds(transitionBounds)
observeAnimationChanges(motionController)
observeMotionController(motionController)
}
Expand Down

0 comments on commit e44deb5

Please sign in to comment.