diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-05-22 15:40:12 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-05-22 15:40:12 -0400 |
commit | 074c596605a9b64ad99f39d6edc37d31bbfb6536 (patch) | |
tree | cdce7695ba994c1fd7c5dcd926a736828178d072 /source/gui_code.cpp | |
parent | f211f9628854b417000192c59d6ab22b946119b1 (diff) |
window and panel resizing
Diffstat (limited to 'source/gui_code.cpp')
-rw-r--r-- | source/gui_code.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source/gui_code.cpp b/source/gui_code.cpp index 19fa572..50fd0c8 100644 --- a/source/gui_code.cpp +++ b/source/gui_code.cpp @@ -14,8 +14,6 @@ #include "backends/imgui_impl_opengl2.h" #include "TextEditor.h" -#include "config.h" - #include <string> extern void compileEditorCode(const std::string& code); @@ -52,9 +50,9 @@ void codeRenderToolbar() codeCompile(); } -void codeRenderWidgets() +void codeRenderWidgets(const ImVec2& size) { - editor.Render("code", {WINDOW_WIDTH - 15, 450}, true); + editor.Render("code", size, true); } static void codeCompile() |