Changeset 186678 in webkit


Ignore:
Timestamp:
Jul 10, 2015, 9:33:47 AM (10 years ago)
Author:
jhoneycutt@apple.com
Message:

[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.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r186664 r186678  
     12015-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
    1142015-07-09  Dan Bernstein  <mitz@apple.com>
    215
  • trunk/Source/WebKit2/UIProcess/ios/forms/WKFileUploadPanel.mm

    r185362 r186678  
    604604{
    605605    documentPicker.delegate = self;
    606     documentPicker.modalPresentationStyle = UIModalPresentationFullScreen;
    607 
    608     [self _presentForCurrentInterfaceIdiom:documentPicker];
     606    [self _presentFullscreenViewController:documentPicker animated:YES];
    609607}
    610608
Note: See TracChangeset for help on using the changeset viewer.