Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

stop scrollpane from vanishing when camera zoomed #511

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Nez.Portable/UI/Containers/ScrollPane.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1214,7 +1214,7 @@ public override void Draw(Batcher batcher, float parentAlpha)

// setup transform for this group.
if (transform)
ApplyTransform(batcher, ComputeTransform());
ApplyTransform(batcher, ComputeTransform() * _stage.Camera.TransformMatrix);

if (_scrollX)
_hKnobBounds.X = _hScrollBounds.X +
Expand Down Expand Up @@ -1321,7 +1321,7 @@ public override void Draw(Batcher batcher, float parentAlpha)
public override void DebugRender(Batcher batcher)
{
if (transform)
ApplyTransform(batcher, ComputeTransform());
ApplyTransform(batcher, ComputeTransform() * _stage.Camera.TransformMatrix);

var scissor =
ScissorStack.CalculateScissors(_stage?.Camera, batcher.TransformMatrix, _widgetAreaBounds);
Expand Down