Skip to content
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

DataInspector tooltips don't move with transformed elements #2662

Closed
pbouffard opened this issue Feb 9, 2023 · 0 comments · Fixed by #3002
Closed

DataInspector tooltips don't move with transformed elements #2662

pbouffard opened this issue Feb 9, 2023 · 0 comments · Fixed by #3002

Comments

@pbouffard
Copy link
Contributor

If the DataInspector is enabled, pointing at something in the scene that has been transformed from its original location will be 'picked' properly (that is, hovering the mouse on it will trigger the inspector) but the inspector tooltip will appear in the original, pre-transformed location.

scr = GLMakie.Screen()
f = Figure()
ax = Axis3(f[1,1])
xs = [1 0 0; 0 1 0; 0 0 1]
ls = lines!(ax, xs)
di = DataInspector()

image

Then,

translate!(ls, -0, 0, 0.4)

image

My screen captures don't show the mouse position but in both cases the pointer was at the vertex of the "V" formed by the lines.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

1 participant