Commit 0eefebcf authored by ElderLich's avatar ElderLich

Bug Fix: Deck Editor: Card Search Drag Pickup Is Direction-Dependent

In Deck Editor card search/collection, dragging a card does not always pick it up. Drag starts reliably only when moving toward the deck, while other initial directions often fail to start card drag. Expected behavior is consistent pickup regardless of initial drag direction.
parent a1e13a9e
...@@ -234,8 +234,7 @@ namespace MDPro3.UI ...@@ -234,8 +234,7 @@ namespace MDPro3.UI
cardCollectionView.superScrollView.scrollRect.OnBeginDrag(eventData); cardCollectionView.superScrollView.scrollRect.OnBeginDrag(eventData);
dragStartPosition = eventData.position; dragStartPosition = eventData.position;
dragProcessing = true; dragProcessing = true;
//draging = !DeckEditor.useMobileLayout; draging = !DeckEditor.UseMobileLayout;
draging = false;
dragIni = false; dragIni = false;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment