Title: [239345] trunk/Source/WebInspectorUI
Revision
239345
Author
[email protected]
Date
2018-12-18 11:43:55 -0800 (Tue, 18 Dec 2018)

Log Message

Web Inspector: Layers: increase default column width for other localizations
https://bugs.webkit.org/show_bug.cgi?id=192812
<rdar://problem/46628625>

Reviewed by Brian Burg.

* UserInterface/Views/LayerDetailsSidebarPanel.js:
(WI.LayerDetailsSidebarPanel.prototype._buildDataGrid):
* UserInterface/Views/LayerTreeDetailsSidebarPanel.js:
(WI.LayerTreeDetailsSidebarPanel.prototype._buildDataGridSection):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (239344 => 239345)


--- trunk/Source/WebInspectorUI/ChangeLog	2018-12-18 19:42:55 UTC (rev 239344)
+++ trunk/Source/WebInspectorUI/ChangeLog	2018-12-18 19:43:55 UTC (rev 239345)
@@ -1,3 +1,16 @@
+2018-12-18  Devin Rousso  <[email protected]>
+
+        Web Inspector: Layers: increase default column width for other localizations
+        https://bugs.webkit.org/show_bug.cgi?id=192812
+        <rdar://problem/46628625>
+
+        Reviewed by Brian Burg.
+
+        * UserInterface/Views/LayerDetailsSidebarPanel.js:
+        (WI.LayerDetailsSidebarPanel.prototype._buildDataGrid):
+        * UserInterface/Views/LayerTreeDetailsSidebarPanel.js:
+        (WI.LayerTreeDetailsSidebarPanel.prototype._buildDataGridSection):
+
 2018-12-18  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: m3u8 content not shown, it should be text

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/LayerDetailsSidebarPanel.js (239344 => 239345)


--- trunk/Source/WebInspectorUI/UserInterface/Views/LayerDetailsSidebarPanel.js	2018-12-18 19:42:55 UTC (rev 239344)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/LayerDetailsSidebarPanel.js	2018-12-18 19:43:55 UTC (rev 239345)
@@ -87,7 +87,7 @@
                 title: WI.UIString("Paints"),
                 sortable: true,
                 aligned: "right",
-                width: "50px",
+                width: "70px",
             },
             memory: {
                 title: WI.UIString("Memory"),

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.js (239344 => 239345)


--- trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.js	2018-12-18 19:42:55 UTC (rev 239344)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.js	2018-12-18 19:43:55 UTC (rev 239345)
@@ -139,7 +139,7 @@
         columns.paintCount.title = WI.UIString("Paints");
         columns.paintCount.sortable = true;
         columns.paintCount.aligned = "right";
-        columns.paintCount.width = "50px";
+        columns.paintCount.width = "70px";
 
         columns.memory.title = WI.UIString("Memory");
         columns.memory.sortable = true;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to