Don't let add-row processing intercept OK processing.

Fixes https://gitlab.com/kicad/code/kicad/issues/14579
This commit is contained in:
Jeff Young 2023-04-26 11:40:18 +01:00
parent 2f392352b5
commit 5b56cb6bdb
1 changed files with 1 additions and 0 deletions

View File

@ -456,6 +456,7 @@ void GRID_TRICKS::onCharHook( wxKeyEvent& ev )
bool handled = false;
if( ( ev.GetKeyCode() == WXK_RETURN || ev.GetKeyCode() == WXK_NUMPAD_ENTER )
&& ev.GetModifiers() == wxMOD_NONE
&& m_grid->GetGridCursorRow() == m_grid->GetNumberRows() - 1 )
{
if( m_grid->IsCellEditControlShown() )