Title: [198174] trunk/Source/WebInspectorUI
- Revision
- 198174
- Author
- commit-qu...@webkit.org
- Date
- 2016-03-14 16:33:49 -0700 (Mon, 14 Mar 2016)
Log Message
Web Inspector: REGRESSION(r198026): Can't click on Snapshot in Timeline Overview
https://bugs.webkit.org/show_bug.cgi?id=155457
<rdar://problem/25150706>
Patch by Joseph Pecoraro <pecor...@apple.com> on 2016-03-14
Reviewed by Timothy Hatcher.
* UserInterface/Views/TimelineRuler.js:
(WebInspector.TimelineRuler.prototype._handleClick):
The conditional was accidentally inverted in r198026.
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (198173 => 198174)
--- trunk/Source/WebInspectorUI/ChangeLog 2016-03-14 23:31:18 UTC (rev 198173)
+++ trunk/Source/WebInspectorUI/ChangeLog 2016-03-14 23:33:49 UTC (rev 198174)
@@ -1,3 +1,15 @@
+2016-03-14 Joseph Pecoraro <pecor...@apple.com>
+
+ Web Inspector: REGRESSION(r198026): Can't click on Snapshot in Timeline Overview
+ https://bugs.webkit.org/show_bug.cgi?id=155457
+ <rdar://problem/25150706>
+
+ Reviewed by Timothy Hatcher.
+
+ * UserInterface/Views/TimelineRuler.js:
+ (WebInspector.TimelineRuler.prototype._handleClick):
+ The conditional was accidentally inverted in r198026.
+
2016-03-14 Timothy Hatcher <timo...@apple.com>
Web Inspector: cssmin.py does not handle calc(var(--toolbar-height) + var(--tab-bar-height))
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRuler.js (198173 => 198174)
--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRuler.js 2016-03-14 23:31:18 UTC (rev 198173)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRuler.js 2016-03-14 23:33:49 UTC (rev 198174)
@@ -718,7 +718,7 @@
if (!this._enabled)
return;
- if (!this._mouseMoved)
+ if (this._mouseMoved)
return;
this.element.style.pointerEvents = "none";
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes