Summary: | Long press gesture recognizer should adjust delay based on other recognizers | ||||||
---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Beth Dakin <bdakin> | ||||
Component: | WebKit2 | Assignee: | Nobody <webkit-unassigned> | ||||
Status: | RESOLVED FIXED | ||||||
Severity: | Normal | CC: | benjamin, dbates | ||||
Priority: | P2 | Keywords: | InRadar | ||||
Version: | Other | ||||||
Hardware: | Unspecified | ||||||
OS: | Unspecified | ||||||
Attachments: |
|
Description
Beth Dakin
2015-08-24 15:34:16 PDT
Created attachment 259784 [details]
Patch
Comment on attachment 259784 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=259784&action=review > Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm:73 > +#import <WebKitAdditions/WKContentViewInteraction.mm> You need to wrap this in a __has_include. Comment on attachment 259784 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=259784&action=review > Source/WebKit2/UIProcess/ios/WKContentViewInteraction.mm:346 > + if ([_longPressGestureRecognizer respondsToSelector:@selector(_setAdjustsDelayBasedOnOtherRecognizers:)]) And this too (or, forward declare _setAdjustsDelayBasedOnOtherRecognizers). Thanks Tim! http://trac.webkit.org/changeset/188924 |