Don't invert horizontal scroll on the audio display on OS X

For some reason horizontal scroll comes pre-flipped.
This commit is contained in:
Thomas Goyne 2013-05-25 07:04:59 -07:00
parent 9bed1a2edc
commit 9174650c1e
1 changed files with 4 additions and 0 deletions

View File

@ -158,9 +158,13 @@ void AudioBox::OnMouseWheel(wxMouseEvent &evt) {
if (!zoom)
{
int amount = -evt.GetWheelRotation() * GetClientSize().GetWidth() / (evt.GetWheelDelta() * 3);
// If the user did a horizontal scroll the amount should be inverted
// for it to be natural.
// On OS X it's pre-flipped for some reason.
#ifndef __APPLE__
if (evt.GetWheelAxis() == 1) amount = -amount;
#endif
// Reset any accumulated zoom
mouse_zoom_accum = 0;