Title: [145371] trunk/Source/WebCore
Revision
145371
Author
pfeld...@chromium.org
Date
2013-03-11 09:07:41 -0700 (Mon, 11 Mar 2013)

Log Message

Web Inspector: fix styles toolbar in the vertical mode.
Not reviewed: swapped two lines.

* inspector/front-end/ElementsPanel.js:
(WebInspector.ElementsPanel.prototype._splitVertically):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (145370 => 145371)


--- trunk/Source/WebCore/ChangeLog	2013-03-11 15:59:24 UTC (rev 145370)
+++ trunk/Source/WebCore/ChangeLog	2013-03-11 16:07:41 UTC (rev 145371)
@@ -1,3 +1,11 @@
+2013-03-11  Pavel Feldman  <pfeld...@chromium.org>
+
+        Web Inspector: fix styles toolbar in the vertical mode.
+        Not reviewed: swapped two lines.
+
+        * inspector/front-end/ElementsPanel.js:
+        (WebInspector.ElementsPanel.prototype._splitVertically):
+
 2013-03-11  Andrey Lushnikov  <lushni...@chromium.org>
 
         Web Inspector: [CodeMirror] add token highlight feature

Modified: trunk/Source/WebCore/inspector/front-end/ElementsPanel.js (145370 => 145371)


--- trunk/Source/WebCore/inspector/front-end/ElementsPanel.js	2013-03-11 15:59:24 UTC (rev 145370)
+++ trunk/Source/WebCore/inspector/front-end/ElementsPanel.js	2013-03-11 16:07:41 UTC (rev 145371)
@@ -1126,8 +1126,8 @@
 
             var splitView = new WebInspector.SplitView(true, "StylesPaneSplitRatio", 0.5);
             splitView.show(compositePane.bodyElement);
+            this.sidebarPanes.styles.show(splitView.firstElement());
             splitView.firstElement().appendChild(this.sidebarPanes.styles.titleElement);
-            this.sidebarPanes.styles.show(splitView.firstElement());
 
             this.sidebarPanes.metrics.show(splitView.secondElement());
             splitView.secondElement().appendChild(this.sidebarPanes.computedStyle.titleElement);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to