Title: [221882] trunk/Source/WebInspectorUI
Revision
221882
Author
[email protected]
Date
2017-09-11 15:18:46 -0700 (Mon, 11 Sep 2017)

Log Message

Web Inspector: Do not allow the split console in the Settings tab
https://bugs.webkit.org/show_bug.cgi?id=176726

Patch by Joseph Pecoraro <[email protected]> on 2017-09-11
Reviewed by Matt Baker.

* UserInterface/Views/SettingsTabContentView.js:
(WI.SettingsTabContentView.prototype.get supportsSplitContentBrowser):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (221881 => 221882)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-09-11 22:16:38 UTC (rev 221881)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-09-11 22:18:46 UTC (rev 221882)
@@ -1,5 +1,15 @@
 2017-09-11  Joseph Pecoraro  <[email protected]>
 
+        Web Inspector: Do not allow the split console in the Settings tab
+        https://bugs.webkit.org/show_bug.cgi?id=176726
+
+        Reviewed by Matt Baker.
+
+        * UserInterface/Views/SettingsTabContentView.js:
+        (WI.SettingsTabContentView.prototype.get supportsSplitContentBrowser):
+
+2017-09-11  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: Include a DebugContentView for debugging
         https://bugs.webkit.org/show_bug.cgi?id=176733
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/SettingsTabContentView.js (221881 => 221882)


--- trunk/Source/WebInspectorUI/UserInterface/Views/SettingsTabContentView.js	2017-09-11 22:16:38 UTC (rev 221881)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/SettingsTabContentView.js	2017-09-11 22:18:46 UTC (rev 221882)
@@ -61,6 +61,11 @@
 
     get type() { return WI.SettingsTabContentView.Type; }
 
+    get supportsSplitContentBrowser()
+    {
+        return false;
+    }
+
     get selectedSettingsView()
     {
         return this._selectedSettingsView;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to