From 70e766a8993044c12e2625c8d3c9383fbf17ce65 Mon Sep 17 00:00:00 2001 From: Antoine Pilote Date: Fri, 15 Sep 2023 18:56:42 -0400 Subject: [PATCH] add missing end child --- Editor/src/Windows/FileSystemUI.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Editor/src/Windows/FileSystemUI.cpp b/Editor/src/Windows/FileSystemUI.cpp index 8c5fb8a6..9f96522a 100644 --- a/Editor/src/Windows/FileSystemUI.cpp +++ b/Editor/src/Windows/FileSystemUI.cpp @@ -62,7 +62,6 @@ namespace Nuake void FileSystemUI::DrawDirectory(Ref directory, uint32_t drawId) { ImGui::PushFont(FontManager::GetFont(Icons)); - ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 4.0f); const char* icon = ICON_FA_FOLDER; const std::string id = ICON_FA_FOLDER + std::string("##") + directory->name; ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 4.0f); @@ -739,8 +738,8 @@ namespace Nuake ImGui::EndTable(); } - } + ImGui::EndChild(); } ImGui::EndChild(); }