SaveTool: fix a condition that prevented armour accessories from being editable.

This commit is contained in:
Guillaume Jacquemin 2022-03-13 10:48:32 +01:00
parent be06c2d552
commit f963ce31ad
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ void SaveTool::drawArmour() {
ImGui::PopID();
if(!part.accessories.size()) {
if(part.accessories.size() != 0) {
ImGui::Separator();
ImGui::PushID("Accessory");