-
-
Notifications
You must be signed in to change notification settings - Fork 532
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
Regression: mouse over tooltip broken by #676 #683
Comments
I tried using delayUpdate but it did not help. Perhaps that could be a possible solution? If the tooltip is already showing, reposition the tooltip after delayUpdate, or immediately if delayUpdate is 0 or undefined? |
PatrickTasse
added a commit
to PatrickTasse/react-tooltip
that referenced
this issue
Mar 24, 2021
PatrickTasse
added a commit
to PatrickTasse/react-tooltip
that referenced
this issue
Mar 26, 2021
PatrickTasse
added a commit
to PatrickTasse/react-tooltip
that referenced
this issue
Nov 25, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In our application we want to be able to move the mouse over the tooltip to select and copy its content.
With 4.2.15 this is no longer possible because the tooltip instantly moves to follow the mouse, like an unreachable carrot at the end of a stick.
In our application the tooltip is defined within a large component, but the tooltip content depends on the mouse position being over items inside the component that are determined by the application but unknown to react. So using effect='solid' is not an option since this will position the tooltip relative to the large component, not to the mouse position.
The text was updated successfully, but these errors were encountered: