diff --git a/src/app/ProjectSchedulePane.tsx b/src/app/ProjectSchedulePane.tsx index f7df33fa..c8c376ca 100644 --- a/src/app/ProjectSchedulePane.tsx +++ b/src/app/ProjectSchedulePane.tsx @@ -872,7 +872,7 @@ export function ProjectSequencerPane({ left: `${(segment.startHour / HOURS_PER_DAY) * 100}%`, width: `${((segment.endHour - segment.startHour) / HOURS_PER_DAY) * 100}%` }} - onPointerDown={(event) => + onMouseDown={(event) => beginRoutineDrag(event, routine, "move") } onClick={() => onSelectRoutine(routine.id)} @@ -880,7 +880,7 @@ export function ProjectSequencerPane({ + onMouseDown={(event) => beginRoutineDrag(event, routine, "resize-start") } /> @@ -890,7 +890,7 @@ export function ProjectSequencerPane({ + onMouseDown={(event) => beginRoutineDrag(event, routine, "resize-end") } />