Update window creation in TestEditor to support resizable windows

- Modified the CreateWindow function call to include the SDL_WINDOW_RESIZABLE flag, allowing for dynamic window resizing during integration tests.
This commit is contained in:
scawful
2025-09-13 11:45:51 -04:00
parent e2aab3f2e4
commit d5ec1ece19

View File

@@ -46,7 +46,7 @@ void TestEditor::RegisterTests(ImGuiTestEngine* engine) {
int RunIntegrationTest() { int RunIntegrationTest() {
yaze::core::Controller controller; yaze::core::Controller controller;
yaze::core::Window window; yaze::core::Window window;
yaze::core::CreateWindow(&window); yaze::core::CreateWindow(window, SDL_WINDOW_RESIZABLE);
IMGUI_CHECKVERSION(); IMGUI_CHECKVERSION();
ImGui::CreateContext(); ImGui::CreateContext();