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 ef86872235
commit e0bd043588
28 changed files with 415 additions and 381 deletions

View File

@ -23,7 +23,7 @@ namespace big
ImGui::PushItemWidth(250);
components::sub_title("CREATOR_SAVED_JOBS"_T);
if (ImGui::ListBoxHeader("##empty", ImVec2(200, 200)))
if (ImGui::BeginListBox("##empty", ImVec2(200, 200)))
{
for (const auto& pair : creator_files)
{
@ -31,7 +31,7 @@ namespace big
selected_creator_file = pair;
}
ImGui::ListBoxFooter();
ImGui::EndListBox();
}
ImGui::SameLine();