Nikita Tsukanov
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/Windows/Avalonia.Win32/Win32Platform.cs
|
|
|
@ -239,7 +239,8 @@ namespace Avalonia.Win32 |
|
|
|
using (var memoryStream = new MemoryStream()) |
|
|
|
{ |
|
|
|
bitmap.Save(memoryStream); |
|
|
|
return CreateIconImpl(memoryStream); |
|
|
|
var iconData = memoryStream.ToArray(); |
|
|
|
return new IconImpl(new Win32Icon(iconData), iconData); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|