ASM editor view is now sized correctly again.

This commit is contained in:
Daan Vanden Bosch 2019-09-17 12:47:03 +02:00
parent 3c6b28f536
commit 859d85da45

View File

@ -82,7 +82,8 @@ export class AsmEditorView extends ResizableWidget {
}
resize(width: number, height: number): this {
this.editor.layout({ width, height });
const editor_height = Math.max(0, height - this.tool_bar_view.height);
this.editor.layout({ width, height: editor_height });
return this;
}
}