Fix CvPcb menu accelerator bug in Linux. (fixes lp:1375232)

This commit is contained in:
Konstantin Baranovskiy 2014-10-14 09:18:48 -04:00 committed by Wayne Stambaugh
parent 788a25438a
commit f8cea8188b
3 changed files with 6 additions and 0 deletions

View File

@ -168,6 +168,8 @@ void COMPONENTS_LISTBOX::OnChar( wxKeyEvent& event )
break;
}
}
event.Skip();
}

View File

@ -286,4 +286,6 @@ void FOOTPRINTS_LISTBOX::OnChar( wxKeyEvent& event )
break;
}
}
event.Skip();
}

View File

@ -213,6 +213,8 @@ void LIBRARY_LISTBOX::OnChar( wxKeyEvent& event )
break;
}
}
event.Skip();
}