Title: [255435] branches/safari-610.1.1-branch/Source/WebKit
Revision
255435
Author
alanc...@apple.com
Date
2020-01-30 09:48:57 -0800 (Thu, 30 Jan 2020)

Log Message

Cherry-pick r255339. rdar://problem/58936679

    Fix the build

    * UIProcess/ios/WKMouseGestureRecognizer.mm:
    (-[WKMouseGestureRecognizer touchesEnded:withEvent:]):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@255339 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-610.1.1-branch/Source/WebKit/ChangeLog (255434 => 255435)


--- branches/safari-610.1.1-branch/Source/WebKit/ChangeLog	2020-01-30 17:48:55 UTC (rev 255434)
+++ branches/safari-610.1.1-branch/Source/WebKit/ChangeLog	2020-01-30 17:48:57 UTC (rev 255435)
@@ -1,5 +1,24 @@
 2020-01-30  Alan Coon  <alanc...@apple.com>
 
+        Cherry-pick r255339. rdar://problem/58936679
+
+    Fix the build
+    
+    * UIProcess/ios/WKMouseGestureRecognizer.mm:
+    (-[WKMouseGestureRecognizer touchesEnded:withEvent:]):
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@255339 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2020-01-28  Timothy Horton  <timothy_hor...@apple.com>
+
+            Fix the build
+
+            * UIProcess/ios/WKMouseGestureRecognizer.mm:
+            (-[WKMouseGestureRecognizer touchesEnded:withEvent:]):
+
+2020-01-30  Alan Coon  <alanc...@apple.com>
+
         Cherry-pick r255337. rdar://problem/58936679
 
     macCatalyst: Right clicking on a link follows it immediately

Modified: branches/safari-610.1.1-branch/Source/WebKit/UIProcess/ios/WKMouseGestureRecognizer.mm (255434 => 255435)


--- branches/safari-610.1.1-branch/Source/WebKit/UIProcess/ios/WKMouseGestureRecognizer.mm	2020-01-30 17:48:55 UTC (rev 255434)
+++ branches/safari-610.1.1-branch/Source/WebKit/UIProcess/ios/WKMouseGestureRecognizer.mm	2020-01-30 17:48:57 UTC (rev 255435)
@@ -170,7 +170,7 @@
 
 - (void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
 {
-    _lastEvent = [self createMouseEventWithType:WebKit::WebEvent::MouseU];
+    _lastEvent = [self createMouseEventWithType:WebKit::WebEvent::MouseUp];
     _lastLocation = [self locationInView:self.view];
 
     _touching = NO;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to