fix: click on ruler moves playhead only (no zero-width selection)
- Remove setSelectionStart/End from simple click (non-drag) path - Only handleMouseMove (drag) creates/modifies selection - Sub-tab already correct (no selection set on click)
This commit is contained in:
@@ -10802,8 +10802,6 @@ const App = () => {
|
||||
setSelectionEnd(selE);
|
||||
} else {
|
||||
rulerAnchorRef.current = Math.max(0, time);
|
||||
setSelectionStart(Math.max(0, time));
|
||||
setSelectionEnd(Math.max(0, time));
|
||||
}
|
||||
handlePlayheadSet(time);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user