Commit 67fd65d9 authored by Gauthier Ambard's avatar Gauthier Ambard Committed by Commit Bot

[iOS] Fix ConsentBump presentation style

The presentation style should be UIModalPresentationFormSheet.

Bug: none
Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet
Change-Id: I2e2e6c20b940e2c455a7605b2bdfc874ec2e9f4e
Reviewed-on: https://chromium-review.googlesource.com/1183670Reviewed-by: default avatarMark Cogan <marq@chromium.org>
Commit-Queue: Gauthier Ambard <gambard@chromium.org>
Cr-Commit-Position: refs/heads/master@{#584971}
parent 6c71362f
...@@ -5059,7 +5059,7 @@ applicationCommandEndpoint:(id<ApplicationCommands>)applicationCommandEndpoint { ...@@ -5059,7 +5059,7 @@ applicationCommandEndpoint:(id<ApplicationCommands>)applicationCommandEndpoint {
self.consentBumpCoordinator.delegate = self; self.consentBumpCoordinator.delegate = self;
[self.consentBumpCoordinator start]; [self.consentBumpCoordinator start];
self.consentBumpCoordinator.viewController.modalPresentationStyle = self.consentBumpCoordinator.viewController.modalPresentationStyle =
UIModalPresentationPageSheet; UIModalPresentationFormSheet;
[self presentViewController:self.consentBumpCoordinator.viewController [self presentViewController:self.consentBumpCoordinator.viewController
animated:YES animated:YES
completion:nil]; completion:nil];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment