Title: [172615] trunk/Source/WebInspectorUI
Revision
172615
Author
[email protected]
Date
2014-08-14 17:18:25 -0700 (Thu, 14 Aug 2014)

Log Message

Web Inspector: Split console toggle button wrong - Images/Images/SplitToggleUp.svg does not exist
https://bugs.webkit.org/show_bug.cgi?id=135957

Patch by Joseph Pecoraro <[email protected]> on 2014-08-14
Reviewed by Timothy Hatcher.

* UserInterface/Views/LogContentView.js:
(WebInspector.LogContentView):
Wrong image path passed to platformImagePath.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (172614 => 172615)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-08-14 23:59:44 UTC (rev 172614)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-08-15 00:18:25 UTC (rev 172615)
@@ -1,5 +1,16 @@
 2014-08-14  Joseph Pecoraro  <[email protected]>
 
+        Web Inspector: Split console toggle button wrong - Images/Images/SplitToggleUp.svg does not exist
+        https://bugs.webkit.org/show_bug.cgi?id=135957
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/LogContentView.js:
+        (WebInspector.LogContentView):
+        Wrong image path passed to platformImagePath.
+
+2014-08-14  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: Avoid re-binding the same function over and over
         https://bugs.webkit.org/show_bug.cgi?id=135949
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.js (172614 => 172615)


--- trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.js	2014-08-14 23:59:44 UTC (rev 172614)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.js	2014-08-15 00:18:25 UTC (rev 172615)
@@ -76,7 +76,7 @@
     var toolTip = WebInspector.UIString("Show split console");
     var altToolTip = WebInspector.UIString("Show full-height console");
 
-    this._toggleSplitNavigationItem = new WebInspector.ToggleButtonNavigationItem("split-toggle", toolTip, altToolTip, platformImagePath("SplitToggleDown.svg"), platformImagePath("Images/SplitToggleUp.svg"), 16, 16);
+    this._toggleSplitNavigationItem = new WebInspector.ToggleButtonNavigationItem("split-toggle", toolTip, altToolTip, platformImagePath("SplitToggleDown.svg"), platformImagePath("SplitToggleUp.svg"), 16, 16);
     this._toggleSplitNavigationItem.addEventListener(WebInspector.ButtonNavigationItem.Event.Clicked, this._toggleSplit, this);
     this._toggleSplitNavigationItem.toggled = WebInspector.isShowingSplitConsole();
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to