Title: [186750] branches/safari-601.1-branch/Source/WebKit2
Revision
186750
Author
[email protected]
Date
2015-07-12 23:44:22 -0700 (Sun, 12 Jul 2015)

Log Message

Merged r186678.  rdar://problem/21251875

Modified Paths

Diff

Modified: branches/safari-601.1-branch/Source/WebKit2/ChangeLog (186749 => 186750)


--- branches/safari-601.1-branch/Source/WebKit2/ChangeLog	2015-07-13 06:11:46 UTC (rev 186749)
+++ branches/safari-601.1-branch/Source/WebKit2/ChangeLog	2015-07-13 06:44:22 UTC (rev 186750)
@@ -1,5 +1,22 @@
 2015-07-12  Babak Shafiei  <[email protected]>
 
+        Merge r186678.
+
+    2015-07-09  Jon Honeycutt  <[email protected]>
+
+            [iOS] Document picker has overlapping icons on iPad
+            https://bugs.webkit.org/show_bug.cgi?id=146808
+            <rdar://problem/21251875>
+
+            Reviewed by Sam Weinig.
+
+            * UIProcess/ios/forms/WKFileUploadPanel.mm:
+            (-[WKFileUploadPanel documentMenu:didPickDocumentPicker:]):
+            Don't show this UI as a popover on iPad; the default is a full screen
+            form sheet.
+
+2015-07-12  Babak Shafiei  <[email protected]>
+
         Merge r186719.
 
     2015-07-11  Joseph Pecoraro  <[email protected]>

Modified: branches/safari-601.1-branch/Source/WebKit2/UIProcess/ios/forms/WKFileUploadPanel.mm (186749 => 186750)


--- branches/safari-601.1-branch/Source/WebKit2/UIProcess/ios/forms/WKFileUploadPanel.mm	2015-07-13 06:11:46 UTC (rev 186749)
+++ branches/safari-601.1-branch/Source/WebKit2/UIProcess/ios/forms/WKFileUploadPanel.mm	2015-07-13 06:44:22 UTC (rev 186750)
@@ -603,9 +603,7 @@
 - (void)documentMenu:(UIDocumentMenuViewController *)documentMenu didPickDocumentPicker:(UIDocumentPickerViewController *)documentPicker
 {
     documentPicker.delegate = self;
-    documentPicker.modalPresentationStyle = UIModalPresentationFullScreen;
-
-    [self _presentForCurrentInterfaceIdiom:documentPicker];
+    [self _presentFullscreenViewController:documentPicker animated:YES];
 }
 
 - (void)documentMenuWasCancelled:(UIDocumentMenuViewController *)documentMenu
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to