Skip to content

Commit

Permalink
fix(common): cell selection in Firefox not working (#859)
Browse files Browse the repository at this point in the history
- fixes issue reported in SlickGrid [issue 714](6pac/SlickGrid#714)
  • Loading branch information
ghiscoding committed Dec 24, 2022
1 parent af909ef commit 41ec4e7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/common/src/extensions/slickCellRangeSelector.ts
Expand Up @@ -344,6 +344,7 @@ export class SlickCellRangeSelector {

// prevent the grid from cancelling drag'n'drop by default
e.stopImmediatePropagation();
e.preventDefault();
}

protected handleDragStart(e: DOMMouseOrTouchEvent<HTMLDivElement>, dd: DragPosition) {
Expand Down

0 comments on commit 41ec4e7

Please sign in to comment.