Explorar el Código

hideFullScreenVideoStatusBars: return early if _autoManageStatusBarEnabled disabled

Kesha Antonov hace 4 años
padre
commit
d0461e81d0
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4
    0
      apple/RNCWebView.m

+ 4
- 0
apple/RNCWebView.m Ver fichero

@@ -339,6 +339,10 @@ static NSDictionary* customCertificatesForHost;
339 339
 -(void)hideFullScreenVideoStatusBars
340 340
 {
341 341
 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
342
+    if (!_autoManageStatusBarEnabled) {
343
+      return;
344
+    }
345
+
342 346
     _isFullScreenVideoOpen = NO;
343 347
     RCTUnsafeExecuteOnMainQueueSync(^{
344 348
       [RCTSharedApplication() setStatusBarHidden:self->_savedStatusBarHidden animated:YES];