mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Merge from vscode 8c426f9f3b6b18935cc6c2ec8aa6d45ccd88021e
This commit is contained in:
@@ -90,6 +90,7 @@ export class CodeActionMenu extends Disposable {
|
||||
const resolver = this._keybindingResolver.getResolver();
|
||||
|
||||
this._contextMenuService.showContextMenu({
|
||||
domForShadowRoot: this._editor.getDomNode()!,
|
||||
getAnchor: () => anchor,
|
||||
getActions: () => menuActions,
|
||||
onHide: () => {
|
||||
|
||||
@@ -205,6 +205,8 @@ export class ContextMenuController implements IEditorContribution {
|
||||
// Show menu
|
||||
this._contextMenuIsBeingShownCount++;
|
||||
this._contextMenuService.showContextMenu({
|
||||
domForShadowRoot: this._editor.getDomNode(),
|
||||
|
||||
getAnchor: () => anchor!,
|
||||
|
||||
getActions: () => actions,
|
||||
|
||||
@@ -54,6 +54,7 @@ export class DragAndDropController extends Disposable implements IEditorContribu
|
||||
this._register(this._editor.onKeyDown((e: IKeyboardEvent) => this.onEditorKeyDown(e)));
|
||||
this._register(this._editor.onKeyUp((e: IKeyboardEvent) => this.onEditorKeyUp(e)));
|
||||
this._register(this._editor.onDidBlurEditorWidget(() => this.onEditorBlur()));
|
||||
this._register(this._editor.onDidBlurEditorText(() => this.onEditorBlur()));
|
||||
this._dndDecorationIds = [];
|
||||
this._mouseDown = false;
|
||||
this._modifierPressed = false;
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
/* Find widget */
|
||||
.monaco-editor .find-widget {
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
z-index: 20;
|
||||
height: 33px;
|
||||
overflow: hidden;
|
||||
line-height: 19px;
|
||||
|
||||
Reference in New Issue
Block a user