From 205df419ea327a7dcd271958ab7a65a8fbbadf5b Mon Sep 17 00:00:00 2001 From: windinthew Date: Thu, 26 Jan 2012 22:20:14 +0000 Subject: [PATCH] Fix typo in code comment "Zoom" should be "Scroll". --- src/TrackPanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TrackPanel.cpp b/src/TrackPanel.cpp index 39bcfc7e3..21f3798fc 100644 --- a/src/TrackPanel.cpp +++ b/src/TrackPanel.cpp @@ -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);