Fix ImgUI red boxes (#4869)

Invisible buttons needed unique IDs
This commit is contained in:
Philip Dubé 2025-01-15 12:46:47 +00:00 committed by GitHub
parent 651623a845
commit d3c619ec2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1546,7 +1546,7 @@ void DrawLocation(RandomizerCheck rc) {
SaveManager::Instance->SaveSection(gSaveContext.fileNum, sectionId, true); SaveManager::Instance->SaveSection(gSaveContext.fileNum, sectionId, true);
} }
} else { } else {
ImGui::InvisibleButton("", ImVec2(20.0f, 10.0f)); ImGui::Dummy(ImVec2(20.0f, 10.0f));
} }
ImGui::SameLine(); ImGui::SameLine();