Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@ protected override void OnMouseMove(MouseEventArgs e)

Cursor = IsHoveringOnColumnEdge || _columnResizing != null
? Cursors.VSplit
: Cursors.Default;
: null; // use parent's cursor

base.OnMouseMove(e);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ private void BeginAxisMouseEdit(int yPos)
_axisRestoreId = CurrentTasMovie.ChangeLog.MostRecentId;

CurrentTasMovie.ChangeLog.BeginNewBatch($"Axis mouse edit, frame {TasView.SelectedRows.First()}");

Cursor = Cursors.SizeNS;
}

public bool AxisEditingMode => AxisEditColumn != null;
Expand Down Expand Up @@ -905,6 +907,8 @@ private void ClearLeftMouseStates()

MainForm.BlockFrameAdvance = false;

Cursor = null;

RefreshDialog(); // Even if no edits happened, the undo form may need updating because we potentially ended a batch.
}

Expand Down