提交 47f04e47 编写于 作者: B Benjamin Pasero

horizontal: fix issue that you can no longer create untitled from title area

上级 f4a15872
......@@ -1181,11 +1181,12 @@ export class SideBySideEditorControl implements ISideBySideEditorControl, IVerti
DOM.EventHelper.stop(e);
// Overlay the editor area with a div to be able to capture all mouse events
// Do NOT cover the title area to prevent missing double click events!
const overlayDiv = $('div').style({
top: 0,
height: '100%'
top: `${SideBySideEditorControl.EDITOR_TITLE_HEIGHT}px`,
height: `calc(100% - ${SideBySideEditorControl.EDITOR_TITLE_HEIGHT}px)`
}).id('monaco-workbench-editor-move-overlay');
overlayDiv.appendTo(this.parent);
overlayDiv.appendTo(this.silos[position]);
// Update flag
this.dragging = true;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册