Skip to content

Commit

Permalink
fix(selection): take in care about time touched properly
Browse files Browse the repository at this point in the history
  • Loading branch information
dloeda authored and mportuga committed Dec 19, 2018
1 parent bdb832a commit 0dbdafe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/selection/js/selection.js
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@


if (touchXDiff < touchPosDiff && touchYDiff < touchPosDiff) {
if (touchTime < touchPosDiff) {
if (touchTime < touchTimeout) {
// short touch
selectCells(evt);
}
Expand Down

0 comments on commit 0dbdafe

Please sign in to comment.