From: Mark Slee Date: Sat, 12 Oct 2013 01:49:26 +0000 (-0700) Subject: Restore normal scroll wheel speed (does Dan have a really slow mouse?) X-Git-Url: https://git.piment-noir.org/?p=SugarCubes.git;a=commitdiff_plain;h=a0140e21fc23ebea5c136941169054c901ac12eb Restore normal scroll wheel speed (does Dan have a really slow mouse?) --- diff --git a/_Internals.pde b/_Internals.pde index d24f13b..16a7cf8 100644 --- a/_Internals.pde +++ b/_Internals.pde @@ -512,7 +512,7 @@ void mouseReleased() { } } -void mouseWheel(int delta) {delta*=20; +void mouseWheel(int delta) { boolean wheeled = false; for (UIContext context : overlays) { wheeled |= context.mouseWheel(mouseX, mouseY, delta);