From 5e4a7747b34e9206d73574f9aa1bcfed5d2bddc7 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Wed, 15 Apr 2026 06:10:45 +0200 Subject: [PATCH] Replace onPointerDown with onMouseDown in ProjectSchedulePane --- src/app/ProjectSchedulePane.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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") } />