jcesarmobile closed pull request #93: CB-13866(ios): fix Camera opens in 
portrait orientation on iphones
URL: https://github.com/apache/cordova-plugin-media-capture/pull/93
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/src/ios/CDVCapture.m b/src/ios/CDVCapture.m
index 7ab0832..f2fe258 100644
--- a/src/ios/CDVCapture.m
+++ b/src/ios/CDVCapture.m
@@ -158,7 +158,7 @@ - (void)captureImage:(CDVInvokedUrlCommand*)command
         }*/
         // CDVImagePicker specific property
         pickerController.callbackId = callbackId;
-
+        pickerController.modalPresentationStyle = 
UIModalPresentationCurrentContext;
         [self.viewController presentViewController:pickerController 
animated:YES completion:nil];
     }
 }
@@ -272,7 +272,7 @@ - (void)captureVideo:(CDVInvokedUrlCommand*)command
         }
         // CDVImagePicker specific property
         pickerController.callbackId = callbackId;
-
+        pickerController.modalPresentationStyle = 
UIModalPresentationCurrentContext;
         [self.viewController presentViewController:pickerController 
animated:YES completion:nil];
     }
 }


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org

Reply via email to