1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

Fix typo in code comment "Zoom" should be "Scroll".

This commit is contained in:
windinthew 2012-01-26 22:20:14 +00:00
parent 466313c5de
commit 205df419ea

View File

@ -4637,7 +4637,7 @@ void TrackPanel::HandleWheelRotation(wxMouseEvent & event)
Refresh(false);
} else
{
// MM: Zoom up/down when used without modifier keys
// MM: Scroll up/down when used without modifier keys
double lines = steps * 4 + mVertScrollRemainder;
mVertScrollRemainder = lines - floor(lines);
lines = floor(lines);