From d71732e50b794c1de18620ac53681a88f1b0cbf6 Mon Sep 17 00:00:00 2001 From: Matthew Petroff Date: Wed, 18 Feb 2015 22:19:38 -0500 Subject: [PATCH] Zooming out with the keyboard was too slow; speeding up. --- src/js/pannellum.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/pannellum.js b/src/js/pannellum.js index ffdd5a7..bfe2e6b 100644 --- a/src/js/pannellum.js +++ b/src/js/pannellum.js @@ -710,7 +710,7 @@ function keyRepeat() { // If minus key is down if (keysDown[0]) { - setHfov(config.hfov + (zoomSpeed * 0.8 + 0.2) * diff); + setHfov(config.hfov + (zoomSpeed * 0.8 + 0.5) * diff); } // If plus key is down