Changeset 220898 in webkit


Ignore:
Timestamp:
Aug 17, 2017 8:13:53 PM (7 years ago)
Author:
Matt Baker
Message:

Web Inspector: create better icon for Canvas Path navigation item
https://bugs.webkit.org/show_bug.cgi?id=175274

Reviewed by Joseph Pecoraro.

  • UserInterface/Images/Path.svg: Added.
  • UserInterface/Views/RecordingContentView.js:

(WI.RecordingContentView):

Location:
trunk/Source/WebInspectorUI
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r220875 r220898  
     12017-08-17  Matt Baker  <mattbaker@apple.com>
     2
     3        Web Inspector: create better icon for Canvas Path navigation item
     4        https://bugs.webkit.org/show_bug.cgi?id=175274
     5
     6        Reviewed by Joseph Pecoraro.
     7
     8        * UserInterface/Images/Path.svg: Added.
     9        * UserInterface/Views/RecordingContentView.js:
     10        (WI.RecordingContentView):
     11
    1122017-08-17  Nikita Vasilyev  <nvasilyev@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Views/RecordingContentView.js

    r220370 r220898  
    4242                this._pathContext = null;
    4343
    44                 this._showPathButtonNavigationItem = new WI.ActivateButtonNavigationItem("show-path", WI.UIString("Show Path"), WI.UIString("Hide Path"), "Images/PaintFlashing.svg", 13, 13);
     44                this._showPathButtonNavigationItem = new WI.ActivateButtonNavigationItem("show-path", WI.UIString("Show Path"), WI.UIString("Hide Path"), "Images/Path.svg", 16, 16);
    4545                this._showPathButtonNavigationItem.addEventListener(WI.ButtonNavigationItem.Event.Clicked, this._showPathButtonClicked, this);
    4646                this._showPathButtonNavigationItem.activated = !!WI.settings.showCanvasPath.value;
Note: See TracChangeset for help on using the changeset viewer.