Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ public HumanoidProfileEditor(
Profile = Profile.WithCharacterAppearance(
Profile.Appearance.WithHairColor(newColor.marking.MarkingColors[0]));
UpdateCMarkingsHair();
ReloadPreview();
ReloadProfilePreview(); // Omu - hair color change does not need complete refresh
};

FacialHairPicker.OnMarkingSelect += newStyle =>
Expand All @@ -491,7 +491,7 @@ public HumanoidProfileEditor(
Profile = Profile.WithCharacterAppearance(
Profile.Appearance.WithFacialHairColor(newColor.marking.MarkingColors[0]));
UpdateCMarkingsFacialHair();
ReloadPreview();
ReloadProfilePreview(); // Omu - hair color change does not need complete refresh
};

HairStylePicker.OnSlotRemove += _ =>
Expand Down
Loading