Skip to content

Commit

Permalink
Don't call UpdateViewport if viewport management is disabled (#3964)
Browse files Browse the repository at this point in the history
* don't call UpdateViewport if viewport management is disabled

* Update ViewportManagerWithPlatformFeatures.cpp

Remove trailing s

Co-authored-by: Stephen L Peters <[email protected]>
  • Loading branch information
ranjeshj and StephenLPeters committed Jan 19, 2021
1 parent 0edd463 commit 773ef30
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions dev/Repeater/ViewportManagerWithPlatformFeatures.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -420,15 +420,18 @@ void ViewportManagerWithPlatformFeatures::EnsureScroller()
parent = CachedVisualTreeHelpers::GetParent(parent);
}

if (!m_scroller)
if (!m_managingViewportDisabled)
{
// We usually update the viewport in the post arrange handler. But, since we don't have
// a scroller, let's do it now.
UpdateViewport(winrt::Rect{});
}
else if (!m_managingViewportDisabled)
{
m_effectiveViewportChangedRevoker = m_owner->EffectiveViewportChanged(winrt::auto_revoke, { this, &ViewportManagerWithPlatformFeatures::OnEffectiveViewportChanged });
if (!m_scroller)
{
// We usually update the viewport in the post arrange handler.
// But, since we don't have a scroller, let's do it now.
UpdateViewport(winrt::Rect{});
}
else
{
m_effectiveViewportChangedRevoker = m_owner->EffectiveViewportChanged(winrt::auto_revoke, { this, &ViewportManagerWithPlatformFeatures::OnEffectiveViewportChanged });
}
}

m_ensuredScroller = true;
Expand Down

0 comments on commit 773ef30

Please sign in to comment.