Changeset 239345 in webkit


Ignore:
Timestamp:
Dec 18, 2018 11:43:55 AM (5 years ago)
Author:
Devin Rousso
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):

Location:
trunk/Source/WebInspectorUI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r239343 r239345  
     12018-12-18  Devin Rousso  <drousso@apple.com>
     2
     3        Web Inspector: Layers: increase default column width for other localizations
     4        https://bugs.webkit.org/show_bug.cgi?id=192812
     5        <rdar://problem/46628625>
     6
     7        Reviewed by Brian Burg.
     8
     9        * UserInterface/Views/LayerDetailsSidebarPanel.js:
     10        (WI.LayerDetailsSidebarPanel.prototype._buildDataGrid):
     11        * UserInterface/Views/LayerTreeDetailsSidebarPanel.js:
     12        (WI.LayerTreeDetailsSidebarPanel.prototype._buildDataGridSection):
     13
    1142018-12-18  Joseph Pecoraro  <pecoraro@apple.com>
    215
  • trunk/Source/WebInspectorUI/UserInterface/Views/LayerDetailsSidebarPanel.js

    r236766 r239345  
    8888                sortable: true,
    8989                aligned: "right",
    90                 width: "50px",
     90                width: "70px",
    9191            },
    9292            memory: {
  • trunk/Source/WebInspectorUI/UserInterface/Views/LayerTreeDetailsSidebarPanel.js

    r238743 r239345  
    140140        columns.paintCount.sortable = true;
    141141        columns.paintCount.aligned = "right";
    142         columns.paintCount.width = "50px";
     142        columns.paintCount.width = "70px";
    143143
    144144        columns.memory.title = WI.UIString("Memory");
Note: See TracChangeset for help on using the changeset viewer.