Title: [212570] trunk/Source/WebInspectorUI
Revision
212570
Author
commit-qu...@webkit.org
Date
2017-02-17 13:30:15 -0800 (Fri, 17 Feb 2017)

Log Message

Web Inspector: Timeline DataGridNodes are lacking detail in title
https://bugs.webkit.org/show_bug.cgi?id=168529
<rdar://problem/30579959>

Patch by Joseph Pecoraro <pecor...@apple.com> on 2017-02-17
Reviewed by Brian Burg.

* UserInterface/Views/TimelineDataGridNode.js:
(WebInspector.TimelineDataGridNode.prototype.displayName):
Include detailed information for DataGridNode display names, since we
want to show maximum detail for records in the DataGrid.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (212569 => 212570)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-02-17 21:18:10 UTC (rev 212569)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-02-17 21:30:15 UTC (rev 212570)
@@ -1,3 +1,16 @@
+2017-02-17  Joseph Pecoraro  <pecor...@apple.com>
+
+        Web Inspector: Timeline DataGridNodes are lacking detail in title
+        https://bugs.webkit.org/show_bug.cgi?id=168529
+        <rdar://problem/30579959>
+
+        Reviewed by Brian Burg.
+
+        * UserInterface/Views/TimelineDataGridNode.js:
+        (WebInspector.TimelineDataGridNode.prototype.displayName):
+        Include detailed information for DataGridNode display names, since we
+        want to show maximum detail for records in the DataGrid.
+
 2017-02-16  Brian Burg  <bb...@apple.com>
 
         Web Inspector: add DebugUI setting to manually override UI layout direction

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineDataGridNode.js (212569 => 212570)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineDataGridNode.js	2017-02-17 21:18:10 UTC (rev 212569)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineDataGridNode.js	2017-02-17 21:30:15 UTC (rev 212570)
@@ -319,7 +319,8 @@
     displayName()
     {
         // Can be overridden by subclasses.
-        return WebInspector.TimelineTabContentView.displayNameForRecord(this.record);
+        const includeDetails = true;
+        return WebInspector.TimelineTabContentView.displayNameForRecord(this.record, true);
     }
 
     iconClassNames()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to