From 013bcf9635a05589fe875ce45180f5bff090052e Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Mon, 20 Jun 2016 23:13:35 -0400 Subject: [PATCH] Bug122: Dragging selected point label should update cursor --- src/TrackPanel.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/TrackPanel.cpp b/src/TrackPanel.cpp index 2ef5371c9..1f67c072a 100644 --- a/src/TrackPanel.cpp +++ b/src/TrackPanel.cpp @@ -6304,6 +6304,10 @@ void TrackPanel::HandleGlyphDragRelease(LabelTrack * lTrack, wxMouseEvent & even UndoPush::CONSOLIDATE); } + // Update cursor on the screen if it is a point. + DrawOverlays(false); + mRuler->DrawOverlays(false); + //If we are adjusting a label on a labeltrack, do not do anything //that follows. Instead, redraw the track. RefreshTrack(lTrack);