Skip to content

Commit

Permalink
Update Content.Client/Lobby/UI/LoadoutPreferenceSelector.xaml.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Pspritechologist <81725545+Pspritechologist@users.noreply.github.com>
Signed-off-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com>
  • Loading branch information
DEATHB4DEFEAT and Pspritechologist authored Nov 16, 2024
1 parent 773e90f commit 84796c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Client/Lobby/UI/LoadoutPreferenceSelector.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ void UpdateGuidebook() => GuidebookButton.Visible =
NameEdit.OnTextChanged += _ =>
_preference.CustomName = string.IsNullOrEmpty(NameEdit.Text) ? null : NameEdit.Text;
DescriptionEdit.OnTextChanged += _ =>
_preference.CustomDescription = string.IsNullOrEmpty(Rope.Collapse(DescriptionEdit.TextRope))? null : Rope.Collapse(DescriptionEdit.TextRope);
_preference.CustomDescription = string.IsNullOrEmpty(Rope.Collapse(DescriptionEdit.TextRope)) ? null : Rope.Collapse(DescriptionEdit.TextRope);
SpecialColorTintToggle.OnToggled += args =>
ColorEdit.Visible = args.Pressed;
ColorEdit.OnColorChanged += _ =>
Expand Down

0 comments on commit 84796c0

Please sign in to comment.