Title: [172352] trunk/Source/WebInspectorUI
Revision
172352
Author
[email protected]
Date
2014-08-08 13:00:39 -0700 (Fri, 08 Aug 2014)

Log Message

Web Inspector: When Switching Recordings, the UI datagrids do not update to match selection
https://bugs.webkit.org/show_bug.cgi?id=135764

Patch by Joseph Pecoraro <[email protected]> on 2014-08-08
Reviewed by Timothy Hatcher.

* UserInterface/Views/TimelineSidebarPanel.js:
When changing the activeContentView trigger an update of the datagrids by
re-applying the filter, which will be different now that the view is different.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (172351 => 172352)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-08-08 19:53:52 UTC (rev 172351)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-08-08 20:00:39 UTC (rev 172352)
@@ -1,5 +1,16 @@
 2014-08-08  Joseph Pecoraro  <[email protected]>
 
+        Web Inspector: When Switching Recordings, the UI datagrids do not update to match selection
+        https://bugs.webkit.org/show_bug.cgi?id=135764
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/TimelineSidebarPanel.js:
+        When changing the activeContentView trigger an update of the datagrids by
+        re-applying the filter, which will be different now that the view is different.
+
+2014-08-08  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: Uncaught Exception opening Web Inspector - TypeError: undefined is not a function - candidateObjectCookie.every
         https://bugs.webkit.org/show_bug.cgi?id=135762
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.js (172351 => 172352)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.js	2014-08-08 19:53:52 UTC (rev 172351)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.js	2014-08-08 20:00:39 UTC (rev 172352)
@@ -363,6 +363,8 @@
             this._timelineTreeElementMap.get(currentTimelineView.representedObject.type).select(true, wasSelectedByUser, shouldSuppressOnSelect, true);
         } else if (this._timelinesTreeOutline.selectedTreeElement)
             this._timelinesTreeOutline.selectedTreeElement.deselect();
+
+        this.updateFilter();
     },
 
     _timelinesTreeElementSelected: function(treeElement, selectedByUser)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to