Title: [255888] trunk/Source/WebInspectorUI
Revision
255888
Author
nvasil...@apple.com
Date
2020-02-05 18:29:56 -0800 (Wed, 05 Feb 2020)

Log Message

Web Inspector: Dragging handles in the easing popover selects sidebar text
https://bugs.webkit.org/show_bug.cgi?id=207316

Reviewed by Timothy Hatcher.

* UserInterface/Views/BezierEditor.js:
(WI.BezierEditor.prototype._handleMousedown):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (255887 => 255888)


--- trunk/Source/WebInspectorUI/ChangeLog	2020-02-06 02:19:10 UTC (rev 255887)
+++ trunk/Source/WebInspectorUI/ChangeLog	2020-02-06 02:29:56 UTC (rev 255888)
@@ -1,3 +1,13 @@
+2020-02-05  Nikita Vasilyev  <nvasil...@apple.com>
+
+        Web Inspector: Dragging handles in the easing popover selects sidebar text
+        https://bugs.webkit.org/show_bug.cgi?id=207316
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/BezierEditor.js:
+        (WI.BezierEditor.prototype._handleMousedown):
+
 2020-02-05  Devin Rousso  <drou...@apple.com>
 
         Web Inspector: Sources: add a special breakpoint for controlling whether `debugger` statements pause

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/BezierEditor.js (255887 => 255888)


--- trunk/Source/WebInspectorUI/UserInterface/Views/BezierEditor.js	2020-02-06 02:19:10 UTC (rev 255887)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/BezierEditor.js	2020-02-06 02:29:56 UTC (rev 255888)
@@ -213,6 +213,7 @@
         if (event.button !== 0)
             return;
 
+        event.stop();
         window.addEventListener("mousemove", this, true);
         window.addEventListener("mouseup", this, true);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to