From bacc1f0685e4d0cb307ab25b58d6279c236a79ab Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Thu, 29 Feb 2024 06:56:21 +0100 Subject: [PATCH] Using Logon instead of Name in Password dialog display --- ENI2/EditControls/ChangePasswordDialog.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ENI2/EditControls/ChangePasswordDialog.xaml.cs b/ENI2/EditControls/ChangePasswordDialog.xaml.cs index 8c559bc7..5912bb68 100644 --- a/ENI2/EditControls/ChangePasswordDialog.xaml.cs +++ b/ENI2/EditControls/ChangePasswordDialog.xaml.cs @@ -77,7 +77,7 @@ namespace ENI2.EditControls private void EditWindowBase_Loaded(object sender, RoutedEventArgs e) { - this.textBlockName.Text = CurrentUser.Name; + this.textBlockName.Text = CurrentUser.Logon; this.AddVisible = false; this.OkVisible = false; var cancelButton = (Button)Template.FindName("buttonCancel", this);