From: Robin Dunn Date: Tue, 6 Feb 2007 21:52:23 +0000 (+0000) Subject: Don't capture the mouse until after the possible wxEVT_GRID_CELL_BEGIN_DRAG event. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/25107357efda3e74e2752f28f95017a4fe158678?ds=inline Don't capture the mouse until after the possible wxEVT_GRID_CELL_BEGIN_DRAG event. (ported from 2.8 branch) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44391 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp index 5a779c7682..e3436a8233 100644 --- a/src/generic/grid.cpp +++ b/src/generic/grid.cpp @@ -5921,13 +5921,6 @@ void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent& event ) SaveEditControlValue(); } - // Have we captured the mouse yet? - if (! m_winCapture) - { - m_winCapture = m_gridWin; - m_winCapture->CaptureMouse(); - } - if ( coords != wxGridNoCellCoords ) { if ( event.CmdDown() ) @@ -5947,6 +5940,7 @@ void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent& event ) coords.GetRow(), coords.GetCol(), event ); + return; } } else @@ -5968,6 +5962,14 @@ void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent& event ) // scrolling is way to fast, at least on MSW - also on GTK. } } + // Have we captured the mouse yet? + if (! m_winCapture) + { + m_winCapture = m_gridWin; + m_winCapture->CaptureMouse(); + } + + } else if ( m_cursorMode == WXGRID_CURSOR_RESIZE_ROW ) {