Fix bug 507, per patch from Chandranshu Garg.

This commit is contained in:
v.audacity 2012-08-17 00:04:57 +00:00
parent da08f1ea12
commit dc2d11b1d6
1 changed files with 1 additions and 1 deletions

View File

@ -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) {