Title: [164740] trunk/Source/WebInspectorUI
Revision
164740
Author
[email protected]
Date
2014-02-26 12:58:13 -0800 (Wed, 26 Feb 2014)

Log Message

Fix an issue where the Timeline filter scope bars were not applying.

Reviewed by Joseph Pecoraro.

* UserInterface/Views/TimelineDataGrid.js:
(TimelineDataGrid.prototype.treeElementMatchesActiveScopeFilters): Use .get() to access the ScopeBar.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (164739 => 164740)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-02-26 20:54:50 UTC (rev 164739)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-02-26 20:58:13 UTC (rev 164740)
@@ -1,3 +1,12 @@
+2014-02-26  Timothy Hatcher  <[email protected]>
+
+        Fix an issue where the Timeline filter scope bars were not applying.
+
+        Reviewed by Joseph Pecoraro.
+
+        * UserInterface/Views/TimelineDataGrid.js:
+        (TimelineDataGrid.prototype.treeElementMatchesActiveScopeFilters): Use .get() to access the ScopeBar.
+
 2014-02-25  Andreas Kling  <[email protected]>
 
         Prune dead code for Web Inspector memory instrumentation.

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineDataGrid.js (164739 => 164740)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineDataGrid.js	2014-02-26 20:54:50 UTC (rev 164739)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineDataGrid.js	2014-02-26 20:58:13 UTC (rev 164740)
@@ -149,7 +149,7 @@
         console.assert(dataGridNode);
 
         for (var identifier of this._filterableColumns) {
-            var scopeBar = this.columns.get(identifier).scopeBar;
+            var scopeBar = this.columns.get(identifier).get("scopeBar");
             if (!scopeBar || scopeBar.defaultItem.selected)
                 continue;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to