1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-20 23:51:18 +01:00

Fix minor typos

This commit is contained in:
Yuri Chornoivan
2020-04-11 10:08:33 +03:00
committed by James Crook
parent f420a546a0
commit d1ada5f08c
116 changed files with 195 additions and 195 deletions

View File

@@ -1069,7 +1069,7 @@ void NoteTrack::ZoomAllNotes()
}
if (!hasNotes) {
// Semi-arbitary default values:
// Semi-arbitrary default values:
minPitch = 48;
maxPitch = 72;
}
@@ -1102,7 +1102,7 @@ NoteTrackDisplayData::NoteTrackDisplayData(const NoteTrack* track, const wxRect
}
// Effective space, excluding the margins and the lines between some notes
auto effectiveHeight = r.height - (2 * (mMargin + 1)) - numC - numF;
// Guarenteed that both the bottom and top notes will be visible
// Guaranteed that both the bottom and top notes will be visible
// (assuming that the clamping below does not happen)
mPitchHeight = effectiveHeight / ((float) span);