Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TIMOB-25314] : iOS camera with overlay view is zoomed #9818

Merged
merged 8 commits into from
May 23, 2018
2 changes: 1 addition & 1 deletion iphone/Classes/MediaModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -1670,7 +1670,7 @@ - (void)showPicker:(NSDictionary *)args isCamera:(BOOL)isCamera
if (transform != nil) {
ENSURE_TYPE(transform, Ti2DMatrix);
[picker setCameraViewTransform:[transform matrix]];
} else if (cameraView != nil && customPicker) {
} else if (cameraView != nil && customPicker && ![TiUtils boolValue:@"showControls" properties:args def:YES]) {
//No transforms in popover
CGSize screenSize = [[UIScreen mainScreen] bounds].size;
UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
Expand Down