瀏覽代碼

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];
     }];
 }