Changeset 246425 in webkit


Ignore:
Timestamp:
Jun 13, 2019 8:06:20 PM (5 years ago)
Author:
Megan Gardner
Message:

Fix selection hang in Mail
https://bugs.webkit.org/show_bug.cgi?id=198845
<rdar://problem/51388180>

Reviewed by Tim Horton.

SelectionDidChange requires a selectionWillChange in order to keep things in line.

  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView _selectionChanged]):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r246413 r246425  
     12019-06-13  Megan Gardner  <megan_gardner@apple.com>
     2
     3        Fix selection hang in Mail
     4        https://bugs.webkit.org/show_bug.cgi?id=198845
     5        <rdar://problem/51388180>
     6
     7        Reviewed by Tim Horton.
     8
     9        SelectionDidChange requires a selectionWillChange in order to keep things in line.
     10
     11        * UIProcess/ios/WKContentViewInteraction.mm:
     12        (-[WKContentView _selectionChanged]):
     13
    1142019-06-13  Tim Horton  <timothy_horton@apple.com>
    215
  • trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm

    r246347 r246425  
    57655765#endif
    57665766
     5767    [self.inputDelegate selectionWillChange:self];
    57675768    [self.inputDelegate selectionDidChange:self];
    57685769   
Note: See TracChangeset for help on using the changeset viewer.