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

@ -13,7 +13,7 @@ namespace big
components::sub_title("Teleport");
if (ImGui::ListBoxHeader("##teleport", get_listbox_dimensions()))
if (ImGui::BeginListBox("##teleport", get_listbox_dimensions()))
{
components::player_command_button<"playertp">(g_player_service->get_selected());
ImGui::SameLine();
@ -133,7 +133,7 @@ namespace big
std::copy(std::begin(current_location), std::end(current_location), std::begin(new_location));
}
ImGui::ListBoxFooter();
ImGui::EndListBox();
}
ImGui::EndGroup();
}