From 5ddf1c1d907a71a78df2cd5da49e6bb26a461297 Mon Sep 17 00:00:00 2001 From: Quentin Date: Mon, 10 Jul 2023 19:01:01 +0200 Subject: [PATCH] fix lua gui: imgui Separator between modules instead of same line which is non sense (#1672) --- src/lua/lua_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lua/lua_manager.cpp b/src/lua/lua_manager.cpp index 1340ad40..6ce724ed 100644 --- a/src/lua/lua_manager.cpp +++ b/src/lua/lua_manager.cpp @@ -50,7 +50,7 @@ namespace big { 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) element->draw();