Redraw label window when mouse capture is lost. while drag move

This commit is contained in:
DietmarSchwertberger
2022-05-26 12:05:43 +02:00
parent 6cdbd0da1f
commit c3d3487ead

View File

@@ -4515,6 +4515,9 @@ void wxGrid::CancelMouseCapture()
// cancel operation currently in progress, whatever it is
if ( m_winCapture )
{
if ( m_cursorMode == WXGRID_CURSOR_MOVE_COL ||
m_cursorMode == WXGRID_CURSOR_MOVE_ROW )
m_winCapture->Refresh();
DoAfterDraggingEnd();
}
}