Skip to content

Commit

Permalink
chore: use forgotten fallback image
Browse files Browse the repository at this point in the history
  • Loading branch information
ramezgerges committed Nov 19, 2024
1 parent f37972f commit e630951
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/AddIns/Uno.WinUI.Graphics3DGL/GLCanvasElement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ protected GLCanvasElement(Func<Window>? getWindowFunc)

Background = new ImageBrush
{
RelativeTransform = new ScaleTransform { ScaleX = 1, ScaleY = -1, CenterX = 0.5, CenterY = 0.5 } // because OpenGL coordinates go bottom-to-top
RelativeTransform = new ScaleTransform { ScaleX = 1, ScaleY = -1, CenterX = 0.5, CenterY = 0.5 }, // because OpenGL coordinates go bottom-to-top
ImageSource = _fallbackImage
};

Loaded += OnLoaded;
Expand Down

0 comments on commit e630951

Please sign in to comment.