Title: [195915] trunk/Source/WebInspectorUI
Revision
195915
Author
[email protected]
Date
2016-01-30 16:24:23 -0800 (Sat, 30 Jan 2016)

Log Message

Web Inspector: Network panel is empty until the window is resized
https://bugs.webkit.org/show_bug.cgi?id=153701
<rdar://problem/24423739>

Reviewed by Timothy Hatcher.

NetworkGridContentView shouldn't prevent a layout from being scheduled
when the network sidebar is collapsed.

* UserInterface/Views/NetworkGridContentView.js:
(WebInspector.NetworkGridContentView.prototype.needsLayout): Deleted.
Removed View.prototype.needsLayout override that was preventing
layouts from being scheduled as timeline records are added.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (195914 => 195915)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-01-30 23:50:25 UTC (rev 195914)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-01-31 00:24:23 UTC (rev 195915)
@@ -1,3 +1,19 @@
+2016-01-30  Matt Baker  <[email protected]>
+
+        Web Inspector: Network panel is empty until the window is resized
+        https://bugs.webkit.org/show_bug.cgi?id=153701
+        <rdar://problem/24423739>
+
+        Reviewed by Timothy Hatcher.
+
+        NetworkGridContentView shouldn't prevent a layout from being scheduled
+        when the network sidebar is collapsed.
+
+        * UserInterface/Views/NetworkGridContentView.js:
+        (WebInspector.NetworkGridContentView.prototype.needsLayout): Deleted.
+        Removed View.prototype.needsLayout override that was preventing
+        layouts from being scheduled as timeline records are added.
+
 2016-01-30  Devin Rousso  <[email protected]>
 
         Web Inspector: Object tree parent items are misaligned

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/NetworkGridContentView.js (195914 => 195915)


--- trunk/Source/WebInspectorUI/UserInterface/Views/NetworkGridContentView.js	2016-01-30 23:50:25 UTC (rev 195914)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/NetworkGridContentView.js	2016-01-31 00:24:23 UTC (rev 195915)
@@ -144,14 +144,6 @@
         this._dataGrid.closed();
     }
 
-    needsLayout()
-    {
-        if (!this._networkSidebarPanel.visible)
-            return;
-
-        super.needsLayout();
-    }
-
     reset()
     {
         this._contentTreeOutline.removeChildren();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to