Title: [192613] trunk/Source/WebInspectorUI
Revision
192613
Author
mattba...@apple.com
Date
2015-11-18 21:47:24 -0800 (Wed, 18 Nov 2015)

Log Message

Web Inspector: Clear watch expressions button using wrong icon
https://bugs.webkit.org/show_bug.cgi?id=151422

Reviewed by Timothy Hatcher.

Updated "clear" button to use trashcan image. This was broken by
https://bugs.webkit.org/show_bug.cgi?id=151377.

* UserInterface/Views/ScopeChainDetailsSidebarPanel.js:
(WebInspector.ScopeChainDetailsSidebarPanel):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (192612 => 192613)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-11-19 05:44:32 UTC (rev 192612)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-11-19 05:47:24 UTC (rev 192613)
@@ -1,5 +1,18 @@
 2015-11-18  Matt Baker  <mattba...@apple.com>
 
+        Web Inspector: Clear watch expressions button using wrong icon
+        https://bugs.webkit.org/show_bug.cgi?id=151422
+
+        Reviewed by Timothy Hatcher.
+
+        Updated "clear" button to use trashcan image. This was broken by
+        https://bugs.webkit.org/show_bug.cgi?id=151377.
+
+        * UserInterface/Views/ScopeChainDetailsSidebarPanel.js:
+        (WebInspector.ScopeChainDetailsSidebarPanel):
+
+2015-11-18  Matt Baker  <mattba...@apple.com>
+
         Web Inspector: Reduce synchronous view layouts
         https://bugs.webkit.org/show_bug.cgi?id=151058
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ScopeChainDetailsSidebarPanel.js (192612 => 192613)


--- trunk/Source/WebInspectorUI/UserInterface/Views/ScopeChainDetailsSidebarPanel.js	2015-11-19 05:44:32 UTC (rev 192612)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ScopeChainDetailsSidebarPanel.js	2015-11-19 05:47:24 UTC (rev 192613)
@@ -44,7 +44,7 @@
         addWatchExpressionButton.addEventListener(WebInspector.ButtonNavigationItem.Event.Clicked, this._addWatchExpressionButtonClicked, this);
         this._navigationBar.addNavigationItem(addWatchExpressionButton);
 
-        this._clearAllWatchExpressionButton = new WebInspector.ButtonNavigationItem("clear-watch-expressions", WebInspector.UIString("Clear watch expressions"), "Images/CloseLarge.svg", 13, 13);
+        this._clearAllWatchExpressionButton = new WebInspector.ButtonNavigationItem("clear-watch-expressions", WebInspector.UIString("Clear watch expressions"), "Images/NavigationItemTrash.svg", 14, 14);
         this._clearAllWatchExpressionButton.addEventListener(WebInspector.ButtonNavigationItem.Event.Clicked, this._clearAllWatchExpressionsButtonClicked, this);
         this._navigationBar.addNavigationItem(this._clearAllWatchExpressionButton);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to