Skip to content

Commit

Permalink
Fix calculation error
Browse files Browse the repository at this point in the history
  • Loading branch information
zsoltk committed Sep 8, 2023
1 parent 576fbe3 commit 8770af9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,6 @@ class ChildrenTransitionScope<InteractionTarget : Any, NavState : Any>(
} ?: IntOffset.Zero
}

return positionInsideOffset - positionOutsideOffset
return positionInsideOffset + positionOutsideOffset
}
}

0 comments on commit 8770af9

Please sign in to comment.