Commit f8cea818 authored by Konstantin Baranovskiy's avatar Konstantin Baranovskiy Committed by Wayne Stambaugh

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

parent 788a2543
......@@ -168,6 +168,8 @@ void COMPONENTS_LISTBOX::OnChar( wxKeyEvent& event )
break;
}
}
event.Skip();
}
......
......@@ -286,4 +286,6 @@ void FOOTPRINTS_LISTBOX::OnChar( wxKeyEvent& event )
break;
}
}
event.Skip();
}
......@@ -213,6 +213,8 @@ void LIBRARY_LISTBOX::OnChar( wxKeyEvent& event )
break;
}
}
event.Skip();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment