From f7d325d4d71df51bd347f6998a11627c542b0d69 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Fri, 22 Dec 2023 18:39:00 -0500 Subject: [PATCH] fix crash when making the export window too small --- src/gui/exportOptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/exportOptions.cpp b/src/gui/exportOptions.cpp index dc0af0c28..04fe51966 100644 --- a/src/gui/exportOptions.cpp +++ b/src/gui/exportOptions.cpp @@ -263,8 +263,8 @@ void FurnaceGUI::drawExport() { } ImGui::EndTabBar(); } - ImGui::EndChild(); } + ImGui::EndChild(); ImGui::Separator(); if (ImGui::Button("Cancel")) ImGui::CloseCurrentPopup(); }