Skip to content

Commit

Permalink
chore: fix error image
Browse files Browse the repository at this point in the history
  • Loading branch information
ramezgerges committed Oct 7, 2024
1 parent 71350c9 commit b8b13ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/AddIns/Uno.WinUI.Graphics3DGL/GLCanvasElement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace Uno.WinUI.Graphics3DGL;
public abstract partial class GLCanvasElement : Grid, INativeContext
{
private const int BytesPerPixel = 4;
private static readonly BitmapImage _fallbackImage = new BitmapImage(new Uri("https://uno-assets.platform.uno/logos/uno.png"));
private static readonly BitmapImage _fallbackImage = new BitmapImage(new Uri("ms-appx:///Assets/error.png"));
private static bool? _glAvailable;

private readonly uint _width;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@

<ItemGroup>
<None Include="..\..\Common\uno.png" Pack="true" PackagePath="\" />
<Content Include="Assets\**\*.*" />
<Content Include="Assets\**\*.*" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit b8b13ab

Please sign in to comment.