동,현이동 동일라인체크 변경, 상우선택시 초기화 문제 #398

Merged
ysCha merged 1 commits from dev into dev-deploy 2025-10-22 17:29:43 +09:00

View File

@ -198,8 +198,16 @@ export function useMovementSetting(id) {
if (type === TYPE.FLOW_LINE) { if (type === TYPE.FLOW_LINE) {
FLOW_LINE_REF.POINTER_INPUT_REF.current.value = '' FLOW_LINE_REF.POINTER_INPUT_REF.current.value = ''
FLOW_LINE_REF.FILLED_INPUT_REF.current.value = '' FLOW_LINE_REF.FILLED_INPUT_REF.current.value = ''
FLOW_LINE_REF.DOWN_LEFT_RADIO_REF.current.checked = true
FLOW_LINE_REF.UP_RIGHT_RADIO_REF.current.checked = false if (FLOW_LINE_REF.UP_RIGHT_RADIO_REF.current.checked || FLOW_LINE_REF.DOWN_LEFT_RADIO_REF.current.checked) {
// If one is checked, uncheck the other
FLOW_LINE_REF.UP_RIGHT_RADIO_REF.current.checked = !FLOW_LINE_REF.DOWN_LEFT_RADIO_REF.current.checked;
FLOW_LINE_REF.DOWN_LEFT_RADIO_REF.current.checked = !FLOW_LINE_REF.UP_RIGHT_RADIO_REF.current.checked;
}else{
FLOW_LINE_REF.DOWN_LEFT_RADIO_REF.current.checked = true
FLOW_LINE_REF.UP_RIGHT_RADIO_REF.current.checked = false
}
} }
if (type === TYPE.UP_DOWN) { if (type === TYPE.UP_DOWN) {
UP_DOWN_REF.POINTER_INPUT_REF.current.value = '' UP_DOWN_REF.POINTER_INPUT_REF.current.value = ''
@ -348,7 +356,7 @@ export function useMovementSetting(id) {
isGableRoof = false isGableRoof = false
} }
const lineVector = const lineVector =
target.y1 === target.y2 Math.abs(target.y1 - target.y2) < 0.2
? FLOW_LINE_REF.UP_RIGHT_RADIO_REF.current.checked ? FLOW_LINE_REF.UP_RIGHT_RADIO_REF.current.checked
? 'up' ? 'up'
: 'down' : 'down'