We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88b1879 commit 18a0c55Copy full SHA for 18a0c55
1 file changed
src/vs/base/browser/ui/menu/menu.ts
@@ -395,10 +395,9 @@ class BaseMenuActionViewItem extends BaseActionViewItem {
395
}
396
397
this._register(addDisposableListener(this.element, EventType.MOUSE_UP, e => {
398
- if (e.defaultPrevented) {
399
- return;
400
- }
401
-
+ // removed default prevention as it conflicts
+ // with BaseActionViewItem #101537
+ // add back if issues arise and link new issue
402
EventHelper.stop(e, true);
403
this.onClick(e);
404
}));
0 commit comments