Using the mouse wheel with the control key down will zoom faster.

This commit is contained in:
leo 2013-12-15 21:41:15 +00:00
parent 742b1e2e8c
commit d33f532af3

View file

@ -9735,7 +9735,7 @@ void Project::OnMouseMove(View* view)
void Project::OnMouseWheel(View* view, float Direction)
{
ZoomActiveView((int)(10 * Direction));
ZoomActiveView((int)((view->mInputState.Control ? 100 : 10) * Direction));
}
// Check if the mouse is over a different area of the overlay and redraw it.