Skip to content

Commit

Permalink
Fix abnormal shift-drag behavior in normal mode
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharied committed Oct 26, 2024
1 parent 81f40bc commit 910b4b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1354,7 +1354,7 @@ public async void OnMouseMove(Point pos)
ScrollTo(audioTime);
}

if (EnableDragging)
if (EnableDragging && !IsRangeSelecting)
{
//拖动已选物件
var cp = pos;
Expand Down

0 comments on commit 910b4b6

Please sign in to comment.