Debug drag and drop on BoardCanvas

This commit is contained in:
Loic Guegan 2023-01-17 10:26:48 +01:00
parent 5871ba3889
commit aa6ec0ea60

View file

@ -493,7 +493,7 @@ void BoardCanvas::MouseEvent(wxMouseEvent &event) {
return;
}
if (event.LeftDown() || event.RightDown()) {
if ((event.LeftDown() || event.RightDown()) && !is_dragging) {
// Start dragging (either piece or arrows drawing)
SetFocus();
REFRESH_MOUSE_LOCATION();