Skip to content

Commit

Permalink
removing drag over listener from drag monitor since we are converting…
Browse files Browse the repository at this point in the history
… this to drag events
  • Loading branch information
swordensen committed Apr 5, 2024
1 parent 696facb commit bfae5f1
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,5 @@ export class WebviewWindowDragMonitor extends Disposable {
onDragStart();
}
}));

this._register(DOM.addDisposableListener(targetWindow, DOM.EventType.DRAG_OVER, (event) => {
if (event.shiftKey) {
onDragEnd();
} else {
onDragStart();
}
}));

}
}

0 comments on commit bfae5f1

Please sign in to comment.