From b5feb0db2acbb7794b341613b6e32e854c29f2ce Mon Sep 17 00:00:00 2001 From: DamianX Date: Sat, 18 Jan 2020 16:57:11 +0100 Subject: [PATCH] Fixed character setup save button (#518) --- Content.Client/UserInterface/HumanoidProfileEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/UserInterface/HumanoidProfileEditor.cs b/Content.Client/UserInterface/HumanoidProfileEditor.cs index 88e477dbd0..a4a26ddc15 100644 --- a/Content.Client/UserInterface/HumanoidProfileEditor.cs +++ b/Content.Client/UserInterface/HumanoidProfileEditor.cs @@ -331,7 +331,7 @@ namespace Content.Client.UserInterface private void UpdateSaveButton() { - _saveButton.Disabled = !(Profile is null) || !IsDirty; + _saveButton.Disabled = Profile is null || !IsDirty; } public void UpdateControls()