Imagara пре 2 година
родитељ
комит
318af9d9bc
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      MyTests/Pages/ProfilePage.xaml.cs

+ 1 - 1
MyTests/Pages/ProfilePage.xaml.cs

@@ -19,7 +19,7 @@ namespace MyTests.Pages
             FIOLabel.Content = user.Surname + " " + user.Name + " " + user.Patronymic; 
             ProfileImage.Source = user.Image == null ?
                 new BitmapImage(new Uri("../Resources/StandartImage.png", UriKind.RelativeOrAbsolute)) :
-                ProfileImage.Source = ImagesFunctions.NewImage(user);
+                ImagesFunctions.NewImage(user);
             EmailBox.Text = user.Email;
             InfoBox.Text = user.Info;
             if (user != Session.User)