-
Notifications
You must be signed in to change notification settings - Fork 727
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: correct calcultation for trackRect is offscreen #1902
base: master
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. |
Test demo after fixed here. |
I'm also having issues with this recently. I'm putting my This calculation doesn't account of the canvas top/bottom etc ( |
Thank you for your work on this pull request! We’re marking this PR as stale to encourage a final push to bring it across the finish line. Any update, comment, or change to the PR will automatically remove the stale label so it stays active in our workflow. If you need any help, don’t hesitate to connect with us on Discord for feedback and support. This PR will close automatically soon if there’s no further activity, but we’re here to help if you’re interested in getting it merged. Thank you for your contribution! |
I'll try to test this out since I had to link to a different View as well. |
Thank you for your work on this pull request! We’re marking this PR as stale to encourage a final push to bring it across the finish line. Any update, comment, or change to the PR will automatically remove the stale label so it stays active in our workflow. If you need any help, don’t hesitate to connect with us on Discord for feedback and support. This PR will close automatically soon if there’s no further activity, but we’re here to help if you’re interested in getting it merged. Thank you for your contribution! |
Why
When
<View />
is non-fullscreen, the calculation of isOffscreen doesn't consider the position of left and top.I made a demo here. You can see the bottom boxes disappear suddenly when you scrolling before it's not fully outside the canvas.
What
The checking should use the canvas bounding box rather than only width and height (it assumes position at top left corner from the screen).
Checklist