mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-05 06:01:04 +01:00
Fix bug 507, per patch from Chandranshu Garg.
This commit is contained in:
@@ -1231,7 +1231,7 @@ void TagsEditor::OnRemove(wxCommandEvent & event)
|
||||
else if (!mEditTrack && mGrid->GetCellValue(row, 0).CmpNoCase(LABEL_TRACK) == 0) {
|
||||
return;
|
||||
}
|
||||
else if (row < STATICCNT - 1) {
|
||||
else if (row < STATICCNT) {
|
||||
mGrid->SetCellValue(row, 1, wxEmptyString);
|
||||
}
|
||||
else if (row >= STATICCNT) {
|
||||
|
||||
Reference in New Issue
Block a user