mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
ASM editor view is now sized correctly again.
This commit is contained in:
parent
3c6b28f536
commit
859d85da45
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user