Merge pull request 'dev' (#254) from dev into dev-deploy

Reviewed-on: #254
This commit is contained in:
ysCha 2025-07-30 15:05:27 +09:00
commit 80bb7e1ae7

View File

@ -214,13 +214,13 @@ export function useMovementSetting(id) {
if (!target) return
const { top: targetTop, left: targetLeft } = target
const currentX = Big(getIntersectMousePoint(e).x).round(0, Big.roundUp)
const currentY = Big(getIntersectMousePoint(e).y).round(0, Big.roundUp)
const currentX = Big(getIntersectMousePoint(e).x) //.round(0, Big.roundUp)
const currentY = Big(getIntersectMousePoint(e).y) //.round(0, Big.roundUp)
let value = ''
if (target.y1 === target.y2) {
value = Big(targetTop).minus(currentY).times(10)
value = Big(targetTop).minus(currentY).times(10).round(0)
} else {
value = Big(targetLeft).minus(currentX).times(10).neg()
value = Big(targetLeft).minus(currentX).times(10).round(0).neg()
}
if (typeRef.current === TYPE.FLOW_LINE) {
FLOW_LINE_REF.POINTER_INPUT_REF.current.value = value.toNumber()