I started with two sets in the Equipment Manager and added a third. I then deleted the second set and the third set became uninteractable and its icon became a question mark. I can no longer make new equipment manager sets. Addons are all deactivated.
Here’s what I do currently to fix this bug when it appears:
- Click the set you want to edit and click save
- Click one of the blank icons
- Select another set
At this point, both sets should have their name and icons back and work as normal. I’ve done this solution countless times today
I have the same issue. The suggested solution did not bring back my missing set or fix the deleted set that turned into a question mark
Having this issue as well. Attempted Catelyn’s work around, but that did not work for me.
I did something similar to Catelyn’s solution, but I will add I input a name and actually saved the set then selected my old saved set icon and hit save, this time it opened the window normally.
Thanks for the solution of save not working, now I have a solution to the red ? issue:
There seems to be a discrepancy between how the Lua code in the UI understands the Lua API and what WoW is actually exporting. Lua code expects values between 0 and num_set-1, game is actually exporting numbers between 0 and 9. I suspect that what this means is if you delete anything other than the last set you end up w/ a question mark. I don’t know any way to recover those sets. You might be able to fix this by just creating new sets. What I ended up doing was killing all sets after the gap.
In my case I had 2 good sets, in slots 0 and 1, and 3 bad sets. Turns out the IDs were 0, 1, 7, 8, 9. So in my case I did:
/dump C_EquipmentSet.DeleteEquipmentSet(2)
(response) nil
/dump C_EquipmentSet.DeleteEquipmentSet(3)
(response) nil
…
/dump C_EquipmentSet.DeleteEquipmentSet(7)
(response something other than nil) (at this point one of the red ? disappeared)
/dump C_EquipmentSet.DeleteEquipmentSet(8)
(response something other than nil) (at this point another of the red ? disappeared)
/dump C_EquipmentSet.DeleteEquipmentSet(9)
(response something other than nil) (at this point last of the red ? disappeared)
Again, don’t know how to recover sets from this, but this can get you to a good state.
Also, I can not stress enough DO NOT DELETE SETS THAT ARE NOT THE LAST SET, it will bug up the manager.
This worked 100%. Just to be clear, click an empty icon in the ICON SELECT popup, not the tray of saved equipment profiles.
Worked great. Thanks a ton. It was driving me crazy!
Thanks this worked mine was in the third slot but saved as 4
My equipment manager does not show up at all.
Did you enable it under Interface > Features?