1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-04 17:49:45 +02:00
This commit is contained in:
Leland Lucius 2015-08-10 16:38:39 -05:00
parent 04d026e5bc
commit 4a93e5cff4

View File

@ -1905,7 +1905,7 @@ bool LabelTrack::OnChar(SelectedRegion &WXUNUSED(newSel), wxKeyEvent & event)
// Cache the character
wxChar charCode = event.GetUnicodeKey();
if (charCode == 0) {
if (charCode == 0 || wxIscntrl(charCode)) {
event.Skip();
return false;
}