Changeset 186678 in webkit
- Timestamp:
- Jul 10, 2015, 9:33:47 AM (10 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r186664 r186678 1 2015-07-09 Jon Honeycutt <jhoneycutt@apple.com> 2 3 [iOS] Document picker has overlapping icons on iPad 4 https://bugs.webkit.org/show_bug.cgi?id=146808 5 <rdar://problem/21251875> 6 7 Reviewed by Sam Weinig. 8 9 * UIProcess/ios/forms/WKFileUploadPanel.mm: 10 (-[WKFileUploadPanel documentMenu:didPickDocumentPicker:]): 11 Don't show this UI as a popover on iPad; the default is a full screen 12 form sheet. 13 1 14 2015-07-09 Dan Bernstein <mitz@apple.com> 2 15 -
trunk/Source/WebKit2/UIProcess/ios/forms/WKFileUploadPanel.mm
r185362 r186678 604 604 { 605 605 documentPicker.delegate = self; 606 documentPicker.modalPresentationStyle = UIModalPresentationFullScreen; 607 608 [self _presentForCurrentInterfaceIdiom:documentPicker]; 606 [self _presentFullscreenViewController:documentPicker animated:YES]; 609 607 } 610 608
Note:
See TracChangeset
for help on using the changeset viewer.