Skip to content

Commit

Permalink
Merge pull request wildabeast#334 from lucatorella/patch-1
Browse files Browse the repository at this point in the history
Adding explicit casting
  • Loading branch information
EddyVerbruggen authored Dec 3, 2016
2 parents 1cdbf87 + e23d82d commit 10f94bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ios/CDVBarcodeScanner.mm
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ - (void)loadView {
- (void)viewWillAppear:(BOOL)animated {

// set video orientation to what the camera sees
self.processor.previewLayer.connection.videoOrientation = [[UIApplication sharedApplication] statusBarOrientation];
self.processor.previewLayer.connection.videoOrientation = (AVCaptureVideoOrientation)[[UIApplication sharedApplication] statusBarOrientation];

// this fixes the bug when the statusbar is landscape, and the preview layer
// starts up in portrait (not filling the whole view)
Expand Down

0 comments on commit 10f94bc

Please sign in to comment.