1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-17 08:30:06 +02:00
lllucius 2013-10-15 04:57:22 +00:00
parent e6f9cdc690
commit a519814713

View File

@ -618,6 +618,11 @@ void ContrastDialog::OnReset(wxCommandEvent & event)
void ContrastDialog::OnChar(wxKeyEvent & event)
{
if (event.GetKeyCode() == WXK_TAB) {
event.Skip();
return;
}
event.Skip(false);
return;
}