Title: [172299] branches/safari-600.1-branch/Source/WebInspectorUI

Diff

Modified: branches/safari-600.1-branch/Source/WebInspectorUI/ChangeLog (172298 => 172299)


--- branches/safari-600.1-branch/Source/WebInspectorUI/ChangeLog	2014-08-07 23:02:08 UTC (rev 172298)
+++ branches/safari-600.1-branch/Source/WebInspectorUI/ChangeLog	2014-08-07 23:02:58 UTC (rev 172299)
@@ -1,5 +1,18 @@
 2014-08-07  Dana Burkart <[email protected]>
 
+        Merge r172263
+
+    2014-08-07  Timothy Hatcher  <[email protected]>
+
+            Fix reference to missing CloseTimeline.svg image.
+
+            Rubber-stamped by Joseph Pecoraro.
+
+            * UserInterface/Views/TimelineSidebarPanel.js:
+            (WebInspector.TimelineSidebarPanel.createTimelineTreeElement): Use CloseLarge.svg instead.
+
+2014-08-07  Dana Burkart <[email protected]>
+
         Merge r172241
 
       2014-08-07  Timothy Hatcher  <[email protected]>

Modified: branches/safari-600.1-branch/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.js (172298 => 172299)


--- branches/safari-600.1-branch/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.js	2014-08-07 23:02:08 UTC (rev 172298)
+++ branches/safari-600.1-branch/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.js	2014-08-07 23:02:58 UTC (rev 172299)
@@ -96,7 +96,7 @@
         var treeElement = new WebInspector.GeneralTreeElement([iconClass, WebInspector.TimelineSidebarPanel.LargeIconStyleClass], label, null, identifier);
 
         const tooltip = WebInspector.UIString("Close %s timeline view").format(label);
-        wrappedSVGDocument(platformImagePath("CloseTimeline.svg"), WebInspector.TimelineSidebarPanel.CloseButtonStyleClass, tooltip, function(element) {
+        wrappedSVGDocument(platformImagePath("CloseLarge.svg"), WebInspector.TimelineSidebarPanel.CloseButtonStyleClass, tooltip, function(element) {
             var button = new WebInspector.TreeElementStatusButton(element);
             button.addEventListener(WebInspector.TreeElementStatusButton.Event.Clicked, this.showTimelineOverview, this);
             treeElement.status = button.element;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to