Skip to content

Commit

Permalink
Fix tripple and more click selection behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas committed Jul 12, 2017
1 parent 9bd5282 commit 853e456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SelectionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ export class SelectionManager extends EventEmitter {
this._onSingleClick(event);
} else if (event.detail === 2) {
this._onDoubleClick(event);
} else if (event.detail === 3) {
} else if (event.detail >= 3) {
this._onTripleClick(event);
}
}
Expand Down

0 comments on commit 853e456

Please sign in to comment.