Changeset 181985 in webkit


Ignore:
Timestamp:
Mar 25, 2015 4:37:41 PM (9 years ago)
Author:
Beth Dakin
Message:

REGRESSION (r181660): Force click url preview doesn't have a TextIndicator in Mail
https://bugs.webkit.org/show_bug.cgi?id=143064
-and corresponding-
rdar://problem/20251440

Reviewed by Tim Horton.

The TextIndicator was getting set to nil by the call to
_dismissContentRelativeChildWindows in mouseDown. That line of code was added by
http://trac.webkit.org/changeset/177242 to work around a bug in another component
that has now been resolved, so it no longer appears to be necessary.

  • UIProcess/API/mac/WKView.mm:

(-[WKView mouseDown:]):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r181984 r181985  
     12015-03-25  Beth Dakin  <bdakin@apple.com>
     2
     3        REGRESSION (r181660): Force click url preview doesn't have a TextIndicator in Mail
     4        https://bugs.webkit.org/show_bug.cgi?id=143064
     5        -and corresponding-
     6        rdar://problem/20251440
     7
     8        Reviewed by Tim Horton.
     9
     10        The TextIndicator was getting set to nil by the call to
     11        _dismissContentRelativeChildWindows in mouseDown. That line of code was added by
     12        http://trac.webkit.org/changeset/177242 to work around a bug in another component
     13        that has now been resolved, so it no longer appears to be necessary.
     14
     15        * UIProcess/API/mac/WKView.mm:
     16        (-[WKView mouseDown:]):
     17
    1182015-03-25  Anders Carlsson  <andersca@apple.com>
    219
  • trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm

    r181972 r181985  
    13681368    _data->_ignoringMouseDraggedEvents = NO;
    13691369
    1370     [self _dismissContentRelativeChildWindows];
    13711370#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101000
    13721371    [_data->_actionMenuController wkView:self willHandleMouseDown:event];
Note: See TracChangeset for help on using the changeset viewer.