Fix order of gender and model in EQDP drawer.

This commit is contained in:
Ottermandias 2024-08-12 20:57:52 +02:00
parent 3135d5e7e6
commit bb9dd184a3

View file

@ -86,11 +86,11 @@ public sealed class EqdpMetaDrawer(ModMetaEditor editor, MetaFileManager metaFil
ImUtf8.HoverTooltip("Model Set ID"u8);
ImGui.TableNextColumn();
ImUtf8.TextFramed(identifier.Gender.ToName(), FrameColor);
ImUtf8.TextFramed(identifier.Race.ToName(), FrameColor);
ImUtf8.HoverTooltip("Model Race"u8);
ImGui.TableNextColumn();
ImUtf8.TextFramed(identifier.Race.ToName(), FrameColor);
ImUtf8.TextFramed(identifier.Gender.ToName(), FrameColor);
ImUtf8.HoverTooltip("Gender"u8);
ImGui.TableNextColumn();