feat(Outfit Editor): Add [+] & [-] buttons (#1441)

* And other general UI improvements
This commit is contained in:
tupoy-ya
2023-06-23 13:44:06 +05:00
committed by GitHub
parent 8bc6648100
commit 1eae251012
28 changed files with 415 additions and 381 deletions

View File

@ -15,7 +15,7 @@ namespace big
ImGui::PushItemWidth(250);
components::sub_title("Loaded Lua Scipts");
if (ImGui::ListBoxHeader("##empty", ImVec2(200, 200)))
if (ImGui::BeginListBox("##empty", ImVec2(200, 200)))
{
auto& modules = g_lua_manager->get_modules();
@ -33,7 +33,7 @@ namespace big
ImGui::Text("No scripts loaded");
}
ImGui::ListBoxFooter();
ImGui::EndListBox();
}
ImGui::SameLine();