Skip to content

Commit

Permalink
Fixes SkiaRenderer not propagating the right transformation during …
Browse files Browse the repository at this point in the history
…its Notify calls (came up in #673)
  • Loading branch information
azeno committed May 23, 2024
1 parent 9494719 commit 8e87a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VL.Stride.Runtime/src/SkiaRenderer.InputHandling.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ IDisposable SubscribeToInputSource(IInputSource inputSource, RenderDrawContext c
return inputManager.GetNotifications(inputSource, sender: this)
.Subscribe(n =>
{
Layer?.Notify(n, callerInfo);
viewportLayer.Notify(n, callerInfo);
});
}
}
Expand Down

0 comments on commit 8e87a5a

Please sign in to comment.