Skip to content

Commit

Permalink
Switch vertical scrolling directions.
Browse files Browse the repository at this point in the history
  • Loading branch information
lipk committed Mar 14, 2014
1 parent 133218f commit ea3bd56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mouse_handler_base.cpp
Expand Up @@ -301,7 +301,7 @@ void mouse_handler_base::mouse_wheel(int scrollx, int scrolly, bool browse)
if (pressed[SDLK_LALT] || pressed[SDLK_RALT]) {
gui().scroll(movey,movex);
} else {
gui().scroll(movex,movey);
gui().scroll(movex,-movey);
}
}

Expand Down

0 comments on commit ea3bd56

Please sign in to comment.