Skip to content

Commit d52ca17

Browse files
Oops! swapped top and right
1 parent 040f0d6 commit d52ca17

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/Core/AndroidNative/maui/src/main/java/com/microsoft/maui/PlatformInterop.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,6 +701,6 @@ public static boolean isImageViewCenterCrop(@NonNull ImageView imageView) {
701701
* Sets View.ClipBounds without creating a Rect object in C#
702702
*/
703703
public static void setClipBounds(@NonNull View view, int left, int top, int right, int bottom) {
704-
view.setClipBounds(new Rect(left, right, top, bottom));
704+
view.setClipBounds(new Rect(left, top, right, bottom));
705705
}
706706
}

src/Core/src/maui.aar

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)