提交 13cc56a7 编写于 作者: A Alex Dima

Fixes Microsoft/monaco-editor#891: Focus editor when returning from context menu

上级 736a5a17
......@@ -54,7 +54,10 @@ export class CodeActionContextMenu {
return at;
},
getActions: () => actions,
onHide: () => { this._visible = false; },
onHide: () => {
this._visible = false;
this._editor.focus();
},
autoSelectFirstItem: true
});
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册