소스 검색

PRS 7.46a

Kenric Nugteren 1 년 전
부모
커밋
f8ed07a332
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      inabox.wpf/ImageUtils.cs

+ 2 - 0
inabox.wpf/ImageUtils.cs

@@ -386,7 +386,9 @@ namespace InABox.WPF
         public static void LoadImage(this BitmapImage image, byte[]? imageData)
         {
             if (imageData == null || imageData.Length == 0)
+            {
                 return;
+            }
 
             using (var mem = new MemoryStream(imageData))
             {