fix lua gui: imgui Separator between modules instead of same line which is non sense (#1672)

This commit is contained in:
Quentin 2023-07-10 19:01:01 +02:00 committed by GitHub
parent c4111b4f2e
commit b8a7c9be70

View File

@ -50,7 +50,7 @@ namespace big
{ {
if (const auto it = module->m_gui.find(tab_hash); it != module->m_gui.end()) if (const auto it = module->m_gui.find(tab_hash); it != module->m_gui.end())
{ {
ImGui::SameLine(); ImGui::Separator();
for (const auto& element : it->second) for (const auto& element : it->second)
element->draw(); element->draw();