Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 552fcf3

Browse files
authored
Merge branch 'main' into 1341-infinite-toast
2 parents 11a05dc + 9a10b8f commit 552fcf3

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/CommunityToolkit/Xamarin.CommunityToolkit/Effects/Shadow/PlatformShadowEffect.ios.macos.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ protected override void OnElementPropertyChanged(PropertyChangedEventArgs args)
7171
case nameof(VisualElement.Width):
7272
case nameof(VisualElement.Height):
7373
case nameof(VisualElement.BackgroundColor):
74+
case nameof(IBorderElement.CornerRadius):
7475
Update(View);
7576
break;
7677
}

src/CommunityToolkit/Xamarin.CommunityToolkit/Effects/Shadow/PlatformShadowEffect.uwp.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ protected override void OnElementPropertyChanged(PropertyChangedEventArgs args)
5555
case nameof(VisualElement.Width):
5656
case nameof(VisualElement.Height):
5757
case nameof(VisualElement.BackgroundColor):
58+
case nameof(IBorderElement.CornerRadius):
5859
UpdateShadow();
5960
break;
6061
}

src/CommunityToolkit/Xamarin.CommunityToolkit/Views/DrawingView/Renderer/DrawingViewRenderer.android.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ void LoadLines()
176176
drawCanvas.DrawPath(drawPath, drawPaint);
177177
drawPath.Reset();
178178
}
179-
180-
Invalidate();
181179
}
180+
181+
Invalidate();
182182
}
183183

184184
protected override void Dispose(bool disposing)

0 commit comments

Comments
 (0)