Skip to content

Commit 1cf6f89

Browse files
committed
fix(dialogs): ios custom view measurement fix
1 parent bd506bc commit 1cf6f89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dialogs/dialogs.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const UIViewAutoSizeUIViewAutoSize = (UIView as any).extend({
4141
layoutSubviews() {
4242
const view = this._view as View;
4343
const size = this.frame.size;
44-
View.layoutChild(null, view, 0, 0, Utils.layout.toDevicePixels(size.width), size.height);
44+
View.layoutChild(null, view, 0, 0, Utils.layout.toDevicePixels(size.width), Utils.layout.toDevicePixels(size.height));
4545
}
4646
});
4747

0 commit comments

Comments
 (0)