From: Michael Bedward Date: Sat, 5 Feb 2000 01:06:47 +0000 (+0000) Subject: Space now move active cell right if grid is not editable X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f603012fbbba5345647cb103a0683009faab0375 Space now move active cell right if grid is not editable git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5846 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp index a9232d42ed..5867454005 100644 --- a/src/generic/grid.cpp +++ b/src/generic/grid.cpp @@ -608,6 +608,7 @@ void wxGridTextCtrl::OnKeyDown( wxKeyEvent& event ) case WXK_RIGHT: case WXK_PRIOR: case WXK_NEXT: + case WXK_SPACE: if ( m_isCellControl ) { // send the event to the parent grid, skipping the @@ -2436,6 +2437,16 @@ void wxGrid::OnKeyDown( wxKeyEvent& event ) MoveCursorRight(); } break; + + case WXK_SPACE: + if ( !IsEditable() ) + { + MoveCursorRight(); + } + else + { + event.Skip() + } case WXK_RETURN: if ( event.ControlDown() )