Fixed character setup save button (#518)

This commit is contained in:
DamianX
2020-01-18 16:57:11 +01:00
committed by Pieter-Jan Briers
parent 4b60c03688
commit b5feb0db2a

View File

@@ -331,7 +331,7 @@ namespace Content.Client.UserInterface
private void UpdateSaveButton() private void UpdateSaveButton()
{ {
_saveButton.Disabled = !(Profile is null) || !IsDirty; _saveButton.Disabled = Profile is null || !IsDirty;
} }
public void UpdateControls() public void UpdateControls()