polarvo-layout 1.0.56 → 1.0.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -666,7 +666,8 @@ class FreeDropEngine {
|
|
|
666
666
|
const layoutRect = this._getLayoutRect();
|
|
667
667
|
if (!layoutRect) return;
|
|
668
668
|
|
|
669
|
-
const step = this._gridSize || 1;
|
|
669
|
+
// const step = this._gridSize || 1;
|
|
670
|
+
const step = 1;
|
|
670
671
|
const rawX = this._activeElement.position.x + delta.x * step;
|
|
671
672
|
const rawY = this._activeElement.position.y + delta.y * step;
|
|
672
673
|
|