提交 c0fa111e 编写于 作者: J Joao Moreno

actionbar should handle dblclick

fixes #56648
上级 2946662f
......@@ -139,6 +139,10 @@ export class BaseActionItem extends lifecycle.Disposable implements IActionItem
}
}));
this._register(DOM.addDisposableListener(this.element, DOM.EventType.DBLCLICK, e => {
DOM.EventHelper.stop(e, true);
}));
[DOM.EventType.MOUSE_UP, DOM.EventType.MOUSE_OUT].forEach(event => {
this._register(DOM.addDisposableListener(this.element, event, e => {
DOM.EventHelper.stop(e);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册