mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-19 15:11:23 +01:00
Fix for bug #1138
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user