Skip to content

Commit

Permalink
fix: 노드 위 우클릭시 이동모드 자동 활성화되는 오류 수정 (#195)
Browse files Browse the repository at this point in the history
fix: 노드 위 우클릭 시 이동모드 활성화되는 것 방지
  • Loading branch information
CatyJazzy authored Dec 2, 2024
1 parent 8da666b commit 46dec06
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/frontend/src/hooks/useMoveNode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ export default function useMoveNode({ nodes, spaceActions }: useMoveNodeProps) {

// onMouseDown, onTouchStart
const startHold = (node: Node, e: KonvaInteractionEvent) => {
// 우클릭으로 이벤트가 발생했을 경우 이동모드 활성화 방지
if (e.evt.button === 2) {
return;
}

setMoveState((prev) => ({
...prev,
isHolding: true,
Expand Down

0 comments on commit 46dec06

Please sign in to comment.