diff --git a/fin-hypergrid.dev.html b/fin-hypergrid.dev.html
index 84b2bac69..1deb6c0bb 100644
--- a/fin-hypergrid.dev.html
+++ b/fin-hypergrid.dev.html
@@ -15443,6 +15443,7 @@
+
@@ -17229,6 +17230,7 @@
+
@@ -17599,6 +17601,7 @@
+
@@ -18016,6 +18019,7 @@
+
@@ -18546,6 +18550,7 @@
+
@@ -19046,6 +19051,7 @@
+
@@ -19188,6 +19194,7 @@
+
@@ -19403,6 +19410,7 @@
+
@@ -19706,7 +19714,7 @@
* @param {fin-hypergrid} grid - [fin-hypergrid](module-._fin-hypergrid.html)
*/
handleDOWNSHIFT: function(grid) {
- var count = this.getAutoScrollAcceleration();
+ var count = this.getAutoScrollAcceleration(grid);
this.moveShiftSelect(grid, 0, count);
},
@@ -19719,7 +19727,7 @@
* @param {Object} event - the event details
*/
handleUPSHIFT: function(grid) {
- var count = this.getAutoScrollAcceleration();
+ var count = this.getAutoScrollAcceleration(grid);
this.moveShiftSelect(grid, 0, -count);
},
@@ -19756,7 +19764,7 @@
* @param {Object} event - the event details
*/
handleDOWN: function(grid) {
- var count = this.getAutoScrollAcceleration();
+ var count = this.getAutoScrollAcceleration(grid);
this.moveSingleSelect(grid, 0, count);
},
@@ -19769,7 +19777,7 @@
* @param {Object} event - the event details
*/
handleUP: function(grid) {
- var count = this.getAutoScrollAcceleration();
+ var count = this.getAutoScrollAcceleration(grid);
this.moveSingleSelect(grid, 0, -count);
},
@@ -19804,7 +19812,10 @@
If we are holding down the same navigation key, accelerate the increment we scroll
* #### returns: integer
*/
- getAutoScrollAcceleration: function() {
+ getAutoScrollAcceleration: function(grid) {
+ if (!grid.isAutoScrollAcceleration()) {
+ return 1;
+ }
var count = 1;
var elapsed = this.getAutoScrollDuration() / 2000;
count = Math.max(1, Math.floor(elapsed * elapsed * elapsed * elapsed));
@@ -20125,6 +20136,7 @@
+
@@ -20515,6 +20527,7 @@
+
@@ -20737,6 +20750,7 @@
+
@@ -20971,6 +20985,7 @@
+
@@ -21210,6 +21225,7 @@
+
@@ -21733,6 +21749,7 @@
+
@@ -22575,6 +22592,7 @@
+
@@ -22875,6 +22893,7 @@
+
@@ -22928,6 +22947,7 @@
}
+
-->
-