You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Control + Click (checking using vtkRenderWindowInteractor.GetControlKey()) in the VCS 2D Interaction stuff to drop new markers / text boxes, and it appears that GetControlKey is never returning True/1 when used in the gui.
The text was updated successfully, but these errors were encountered:
Looks like this is because for Qt on Mac, control is the "command" button, not the control button. I'm going to add some logic to cover that case a bit better.
Left click + control on mac maps to a right click in Qt. Sigh. Ok, just going to add OS specific code in the VCS stuff to mention "Command" if sys.platform == "darwin".
I'm using Control + Click (checking using
vtkRenderWindowInteractor.GetControlKey()
) in the VCS 2D Interaction stuff to drop new markers / text boxes, and it appears thatGetControlKey
is never returning True/1 when used in the gui.The text was updated successfully, but these errors were encountered: