Skip to content

Commit

Permalink
Fix order of gender and model in EQDP drawer.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ottermandias committed Aug 12, 2024
1 parent 3135d5e commit bb9dd18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Penumbra/UI/AdvancedWindow/Meta/EqdpMetaDrawer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ private static void DrawIdentifier(EqdpIdentifier identifier)
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();
Expand Down

0 comments on commit bb9dd18

Please sign in to comment.