GUI: use ImGuiChildFlags_Border

This commit is contained in:
tildearrow 2025-08-10 04:53:08 -05:00
parent d701596972
commit 2fc050c6b4
8 changed files with 10 additions and 10 deletions

View file

@ -6002,7 +6002,7 @@ bool FurnaceGUI::loop() {
ImVec2 romLogSize=ImGui::GetContentRegionAvail();
romLogSize.y-=ImGui::GetFrameHeightWithSpacing();
if (romLogSize.y<60.0f*dpiScale) romLogSize.y=60.0f*dpiScale;
if (ImGui::BeginChild("Export Log",romLogSize,true)) {
if (ImGui::BeginChild("Export Log",romLogSize,ImGuiChildFlags_Border)) {
pendingExport->logLock.lock();
ImGui::PushFont(patFont);
for (String& i: pendingExport->exportLog) {