| Index: Source/devtools/front_end/CPUProfileView.js
|
| diff --git a/Source/devtools/front_end/CPUProfileView.js b/Source/devtools/front_end/CPUProfileView.js
|
| index 3bcb3058cdfbd58cc004b92b1043f6b46e803ec5..3a0731f0a41233e03c6ab48f6b4c0021682e7de2 100644
|
| --- a/Source/devtools/front_end/CPUProfileView.js
|
| +++ b/Source/devtools/front_end/CPUProfileView.js
|
| @@ -36,8 +36,8 @@ WebInspector.CPUProfileView = function(profileHeader)
|
| this._viewType = WebInspector.settings.createSetting("cpuProfilerView", WebInspector.CPUProfileView._TypeHeavy);
|
|
|
| var columns = [];
|
| - columns.push({id: "self", title: WebInspector.UIString("Self"), width: "110px", sort: WebInspector.DataGrid.Order.Descending, sortable: true});
|
| - columns.push({id: "total", title: WebInspector.UIString("Total"), width: "110px", sortable: true});
|
| + columns.push({id: "self", title: WebInspector.UIString("Self"), width: "120px", sort: WebInspector.DataGrid.Order.Descending, sortable: true});
|
| + columns.push({id: "total", title: WebInspector.UIString("Total"), width: "120px", sortable: true});
|
| columns.push({id: "function", title: WebInspector.UIString("Function"), disclosure: true, sortable: true});
|
|
|
| this.dataGrid = new WebInspector.DataGrid(columns);
|
|
|