Changeset 180699 in webkit
- Timestamp:
- Feb 26, 2015, 2:21:18 PM (12 years ago)
- Location:
- branches/safari-600.1.4.15-branch/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/ios/ViewGestureControllerIOS.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-600.1.4.15-branch/Source/WebKit2/ChangeLog
r180692 r180699 1 2015-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 1 16 2015-02-26 Lucas Forschler <lforschler@apple.com> 2 17 -
branches/safari-600.1.4.15-branch/Source/WebKit2/UIProcess/ios/ViewGestureControllerIOS.mm
r177438 r180699 248 248 249 249 [m_liveSwipeView.superview insertSubview:m_transitionContainerView.get() belowSubview:m_liveSwipeView]; 250 [m_transitionContainerView addSubview:m_liveSwipeViewClippingView.get()]; 250 251 [m_liveSwipeViewClippingView addSubview:m_liveSwipeView]; 251 [m_transitionContainerView addSubview:m_liveSwipeViewClippingView.get()];252 252 253 253 RetainPtr<UIViewController> targettedViewController = adoptNS([[UIViewController alloc] init]);
Note:
See TracChangeset
for help on using the changeset viewer.