⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 180699 in webkit


Ignore:
Timestamp:
Feb 26, 2015, 2:21:18 PM (12 years ago)
Author:
Lucas Forschler
Message:

Merged r179904. rdar://problem/19966381

Location:
branches/safari-600.1.4.15-branch/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-600.1.4.15-branch/Source/WebKit2/ChangeLog

    r180692 r180699  
     12015-02-26  Lucas Forschler  <lforschler@apple.com>
     2
     3        Merge r179904
     4
     5    2015-02-10  Dan Bernstein  <mitz@apple.com>
     6
     7            <rdar://problem/19770264> Starting a navigation gesture dismisses the keyboard
     8
     9            Reviewed by Tim Horton.
     10
     11            * UIProcess/ios/ViewGestureControllerIOS.mm:
     12            (WebKit::ViewGestureController::beginSwipeGesture): Reordered the view hierarchy changes,
     13            such that m_liveSwipeView will not momentarily move out of the window, because that causes
     14            the window’s first responder to be set to nil (if it was a descendant of m_liveSwipView).
     15
    1162015-02-26  Lucas Forschler  <lforschler@apple.com>
    217
  • branches/safari-600.1.4.15-branch/Source/WebKit2/UIProcess/ios/ViewGestureControllerIOS.mm

    r177438 r180699  
    248248
    249249    [m_liveSwipeView.superview insertSubview:m_transitionContainerView.get() belowSubview:m_liveSwipeView];
     250    [m_transitionContainerView addSubview:m_liveSwipeViewClippingView.get()];
    250251    [m_liveSwipeViewClippingView addSubview:m_liveSwipeView];
    251     [m_transitionContainerView addSubview:m_liveSwipeViewClippingView.get()];
    252252
    253253    RetainPtr<UIViewController> targettedViewController = adoptNS([[UIViewController alloc] init]);
Note: See TracChangeset for help on using the changeset viewer.