Skip to content

Commit

Permalink
Do local selection check in TasView_PointedCellChanged
Browse files Browse the repository at this point in the history
  • Loading branch information
Morilli committed Jun 23, 2024
1 parent cfc76ee commit 8278b30
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,8 @@ private void TasView_PointedCellChanged(object sender, InputRoll.CellEventArgs e
{
for (var i = startVal; i <= endVal; i++)
{
TasView.SelectRow(i, _selectionDragState);
if (!TasView.IsRowSelected(i))
TasView.SelectRow(i, _selectionDragState);
if (AxisEditingMode && (ModifierKeys == Keys.Control || ModifierKeys == Keys.Shift))
{
if (_selectionDragState)
Expand Down

0 comments on commit 8278b30

Please sign in to comment.