SaveTool: fix a condition that prevented armour accessories from being editable.
This commit is contained in:
parent
be06c2d552
commit
f963ce31ad
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ void SaveTool::drawArmour() {
|
||||||
|
|
||||||
ImGui::PopID();
|
ImGui::PopID();
|
||||||
|
|
||||||
if(!part.accessories.size()) {
|
if(part.accessories.size() != 0) {
|
||||||
ImGui::Separator();
|
ImGui::Separator();
|
||||||
|
|
||||||
ImGui::PushID("Accessory");
|
ImGui::PushID("Accessory");
|
||||||
|
|
Loading…
Reference in a new issue