Changeset 179904 in webkit
- Timestamp:
- Feb 10, 2015, 4:54:20 PM (12 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/ios/ViewGestureControllerIOS.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r179885 r179904 1 2015-02-10 Dan Bernstein <mitz@apple.com> 2 3 <rdar://problem/19770264> Starting a navigation gesture dismisses the keyboard 4 5 Reviewed by Tim Horton. 6 7 * UIProcess/ios/ViewGestureControllerIOS.mm: 8 (WebKit::ViewGestureController::beginSwipeGesture): Reordered the view hierarchy changes, 9 such that m_liveSwipeView will not momentarily move out of the window, because that causes 10 the window’s first responder to be set to nil (if it was a descendant of m_liveSwipView). 11 1 12 2015-02-10 Enrica Casucci <enrica@apple.com> 2 13 -
trunk/Source/WebKit2/UIProcess/ios/ViewGestureControllerIOS.mm
r179468 r179904 215 215 216 216 [m_liveSwipeView.superview insertSubview:m_transitionContainerView.get() belowSubview:m_liveSwipeView]; 217 [m_transitionContainerView addSubview:m_liveSwipeViewClippingView.get()]; 217 218 [m_liveSwipeViewClippingView addSubview:m_liveSwipeView]; 218 [m_transitionContainerView addSubview:m_liveSwipeViewClippingView.get()];219 219 220 220 RetainPtr<UIViewController> targettedViewController = adoptNS([[UIViewController alloc] init]);
Note:
See TracChangeset
for help on using the changeset viewer.