Allow hand card ordering by drag'n'drop only with left mouse button.

This commit is contained in:
LevelX2 2015-08-26 16:29:57 +02:00
parent d3ce238b53
commit 0ee22d90ca

View file

@ -292,6 +292,10 @@ public class MageActionCallback implements ActionCallback {
// drag'n'drop is allowed for HAND zone only
return;
}
if (!SwingUtilities.isLeftMouseButton(e)) {
// only allow draging with the left mouse button
return;
}
isDragging = true;
prevCard = card;
Point p = card.getCardLocation();