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
When setting the panning key, you can't pan the canvas with the provided key. Panning is only possible when using the panning key and the space bar at the same time. The reason of this bug is at PanningGrid.cs:334.
You should remove Keyboard.IsKeyDown(Key.Space). You could add Keyboard.IsKeyDown(_parent.PanningKey) as replacement, but _parent.IsPanning already checks if the key is pressed.
The text was updated successfully, but these errors were encountered:
That's a known issue that was kinda ignored and caused by a pretty much bad design that I started with.
At the moment, there's an existing branch that I am working on called feature/refector-states-and-gestures. Basically, I am refactoring and redesigning a pretty big part of the library which covers this. You can take a look at that branch as I don't have a public board that shows the tracking of what that branch includes and all the changes I am preparing, but a v3.0.0 version comes with nice stuff, soon I hope 😅.
If this is an urgent issue, I would suggest that you would solve this in your fork/clone or try to test it like that and then maybe create a PR and I will merge it and release an update.
When setting the panning key, you can't pan the canvas with the provided key. Panning is only possible when using the panning key and the space bar at the same time. The reason of this bug is at PanningGrid.cs:334.
You should remove
Keyboard.IsKeyDown(Key.Space)
. You could addKeyboard.IsKeyDown(_parent.PanningKey)
as replacement, but_parent.IsPanning
already checks if the key is pressed.The text was updated successfully, but these errors were encountered: