aboutsummaryrefslogtreecommitdiffstats
path: root/source/gui_code.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2022-05-22 15:40:12 -0400
committerClyne Sullivan <clyne@bitgloo.com>2022-05-22 15:40:12 -0400
commit074c596605a9b64ad99f39d6edc37d31bbfb6536 (patch)
treecdce7695ba994c1fd7c5dcd926a736828178d072 /source/gui_code.cpp
parentf211f9628854b417000192c59d6ab22b946119b1 (diff)
window and panel resizing
Diffstat (limited to 'source/gui_code.cpp')
-rw-r--r--source/gui_code.cpp6
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()