提交 5c21818c 编写于 作者: J Johannes Rieken

breadcrumbs - don't let editor group steal focus

上级 dd37f5b5
......@@ -337,8 +337,10 @@ export class EditorGroupView extends Themable implements IEditorGroupView {
target = (e as GestureEvent).initialTarget as HTMLElement;
}
if (findParentWithClass(target, 'monaco-action-bar', this.titleContainer)) {
return; // not when clicking on actions
if (findParentWithClass(target, 'monaco-action-bar', this.titleContainer) ||
findParentWithClass(target, 'monaco-breadcrumb-item', this.titleContainer)
) {
return; // not when clicking on actions or breadcrumbs
}
// timeout to keep focus in editor after mouse up
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册