From 348a6827c27daa50fa1393f90fdcf8ad6f6d7902 Mon Sep 17 00:00:00 2001 From: scawful Date: Fri, 30 Dec 2022 18:31:55 -0600 Subject: [PATCH] update inline assembly editor internal size --- src/app/editor/assembly_editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/editor/assembly_editor.cc b/src/app/editor/assembly_editor.cc index 534c141f..aacdcaaa 100644 --- a/src/app/editor/assembly_editor.cc +++ b/src/app/editor/assembly_editor.cc @@ -45,7 +45,7 @@ void AssemblyEditor::InlineUpdate() { text_editor_.GetLanguageDefinition().mName.c_str(), current_file_.c_str()); - text_editor_.Render("##asm_editor", ImVec2(0, 300)); + text_editor_.Render("##asm_editor", ImVec2(0, 0)); } void AssemblyEditor::ChangeActiveFile(const std::string& filename) {