Skip to content
Snippets Groups Projects
Commit efd1e7da authored by Sebastian Mohr's avatar Sebastian Mohr
Browse files

Hotfix: Text movement disappearing on desktop devices see #103

parent 7543ed58
Branches
Tags
No related merge requests found
Pipeline #573985 failed
......@@ -97,7 +97,7 @@ function useDrag({
const handlePointerDown = useCallback(
(e: PointerEvent) => {
offset.current = [e.layerX, e.layerY];
screenPos.current = [e.screenX, e.screenY];
screenPos.current = [e.pageX, e.pageY];
isDragging.current = true;
if (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment