We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2f5b4a commit dfc6a2aCopy full SHA for dfc6a2a
src/vs/base/browser/ui/dropdown/dropdown.ts
@@ -61,9 +61,8 @@ export class BaseDropdown extends ActionRunner {
61
62
for (const event of [EventType.MOUSE_DOWN, GestureEventType.Tap]) {
63
this._register(addDisposableListener(this._label, event, e => {
64
- if (isMouseEvent(e) && (e.detail > 1 || e.button !== 0)) {
+ if (isMouseEvent(e) && e.button !== 0) {
65
// prevent right click trigger to allow separate context menu (https://github.com/microsoft/vscode/issues/151064)
66
- // prevent multiple clicks to open multiple context menus (https://github.com/microsoft/vscode/issues/41363)
67
return;
68
}
69
0 commit comments