mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-04 17:49:45 +02:00
Fix for bug #1138
This commit is contained in:
parent
04d026e5bc
commit
4a93e5cff4
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user