Title: [202134] trunk/Source/WebInspectorUI
Revision
202134
Author
[email protected]
Date
2016-06-16 12:50:32 -0700 (Thu, 16 Jun 2016)

Log Message

Unreviewed build fix.

* UserInterface/Views/DataGrid.js:
(WebInspector.DataGrid.prototype.createSettings):
"showColumn" -> "setColumnVisible".

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (202133 => 202134)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-06-16 19:39:10 UTC (rev 202133)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-06-16 19:50:32 UTC (rev 202134)
@@ -1,5 +1,13 @@
 2016-06-16  Matt Baker  <[email protected]>
 
+        Unreviewed build fix.
+
+        * UserInterface/Views/DataGrid.js:
+        (WebInspector.DataGrid.prototype.createSettings):
+        "showColumn" -> "setColumnVisible".
+
+2016-06-16  Matt Baker  <[email protected]>
+
         Web Inspector: DataGrid should manage its own settings
         https://bugs.webkit.org/show_bug.cgi?id=158675
         <rdar://problem/26761338>

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.js (202133 => 202134)


--- trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.js	2016-06-16 19:39:10 UTC (rev 202133)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/DataGrid.js	2016-06-16 19:50:32 UTC (rev 202134)
@@ -359,7 +359,7 @@
         }
 
         for (let columnIdentifier of this._hiddenColumnSetting.value)
-            this.showColumn(columnIdentifier, false);
+            this.setColumnVisible(columnIdentifier, false);
     }
 
     _updateScrollListeners()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to