提交 7d76da21 编写于 作者: J Joao Moreno

list: right click should not select/focus

上级 cabd0e48
......@@ -492,6 +492,10 @@ class MouseController<T> implements IDisposable {
}
private onMouseDown(e: IListMouseEvent<T> | IListTouchEvent<T>): void {
if (e.browserEvent instanceof MouseEvent && e.browserEvent.button === 2) {
return;
}
if (this.options.focusOnMouseDown === false) {
e.browserEvent.preventDefault();
e.browserEvent.stopPropagation();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册