فهرست منبع

VLCSettingsController: Fix the slow display of actionSheets

Disable actionSheet animation on presentViewController
as actionSheets manage their animation themselves.
Edgar Fouillet 5 سال پیش
والد
کامیت
124c2d9230
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      Sources/VLCSettingsController.m

+ 1 - 1
Sources/VLCSettingsController.m

@@ -232,7 +232,7 @@ NSString * const kVLCSectionTableHeaderViewIdentifier = @"VLCSectionTableHeaderV
     actionSheet.delegate = specifierManager;
     actionSheet.dataSource = specifierManager;
     
-    [self presentViewController:actionSheet animated:YES completion:^{
+    [self presentViewController:actionSheet animated:NO completion:^{
         [self->actionSheet.collectionView selectItemAtIndexPath:self->specifierManager.selectedIndex animated:NO scrollPosition:UICollectionViewScrollPositionCenteredVertically];
     }];
 }