diff --git a/web_app/src/components/Editor.tsx b/web_app/src/components/Editor.tsx index 5fdb68c..961300f 100644 --- a/web_app/src/components/Editor.tsx +++ b/web_app/src/components/Editor.tsx @@ -396,13 +396,13 @@ export default function Editor(props: EditorProps) { } const onPointerUp = (ev: SyntheticEvent) => { - if (!hadDrawSomething()) { - return - } if (isMidClick(ev)) { setIsPanning(false) return } + if (!hadDrawSomething()) { + return + } if (interactiveSegState.isInteractiveSeg) { return }