doubleclick selects cell for editing

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28034 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2004-06-26 15:51:42 +00:00
parent a3c15d892d
commit 1ef49ab576

View File

@ -5543,11 +5543,17 @@ void wxGrid::ProcessGridCellMouseEvent( wxMouseEvent& event )
if ( XToEdgeOfCol(x) < 0 && YToEdgeOfRow(y) < 0 ) if ( XToEdgeOfCol(x) < 0 && YToEdgeOfRow(y) < 0 )
{ {
SendEvent( wxEVT_GRID_CELL_LEFT_DCLICK, if ( !SendEvent( wxEVT_GRID_CELL_LEFT_DCLICK,
coords.GetRow(), coords.GetRow(),
coords.GetCol(), coords.GetCol(),
event ); event ) )
{
// we want double click to select a cell and start editing
// (i.e. to behave in same way as sequence of two slow clicks):
m_waitForSlowClick = true;
}
} }
} }