Skip to content

Commit d62abc9

Browse files
committed
fix
1 parent 6d8d35d commit d62abc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

maui/src/PullToRefresh/SfPullToRefresh.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1861,7 +1861,7 @@ protected override void OnHandlerChanged()
18611861
/// <exclude/>
18621862
protected override Size MeasureContent(double widthConstraint, double heightConstraint)
18631863
{
1864-
if ((!IsPulling && !ActualIsRefreshing) || _previousMeasuredSize != new Size(widthConstraint, heightConstraint))
1864+
if (!IsPulling || _previousMeasuredSize != new Size(widthConstraint, heightConstraint))
18651865
{
18661866
if (PullableContent is not null)
18671867
{
@@ -1883,7 +1883,7 @@ protected override Size MeasureContent(double widthConstraint, double heightCons
18831883
/// <exclude/>
18841884
protected override Size ArrangeContent(Rect bounds)
18851885
{
1886-
if ((!IsPulling && !ActualIsRefreshing) || !bounds.Equals(_previousBounds))
1886+
if (!IsPulling || !bounds.Equals(_previousBounds))
18871887
{
18881888
ManualArrangeContent(false, bounds);
18891889
_previousBounds = bounds;

0 commit comments

Comments
 (0)