Changeset 269547 in webkit


Ignore:
Timestamp:
Nov 6, 2020 3:39:01 PM (21 months ago)
Author:
Devin Rousso
Message:

Web Inspector: Sources: default breakpoint action should be evaluate
https://bugs.webkit.org/show_bug.cgi?id=218674

Reviewed by Joseph Pecoraro.

  • UserInterface/Views/BreakpointPopover.js:

(WI.BreakpointPopover.prototype._handleAddActionButtonClick):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r269524 r269547  
     12020-11-06  Devin Rousso  <drousso@apple.com>
     2
     3        Web Inspector: Sources: default breakpoint action should be evaluate
     4        https://bugs.webkit.org/show_bug.cgi?id=218674
     5
     6        Reviewed by Joseph Pecoraro.
     7
     8        * UserInterface/Views/BreakpointPopover.js:
     9        (WI.BreakpointPopover.prototype._handleAddActionButtonClick):
     10
    1112020-11-06  Truitt Savell  <tsavell@apple.com>
    212
  • trunk/Source/WebInspectorUI/UserInterface/Views/BreakpointPopover.js

    r269337 r269547  
    443443        this._actionsContainerElement.removeChildren();
    444444
    445         let action = new WI.BreakpointAction(WI.BreakpointAction.Type.Log);
     445        let action = new WI.BreakpointAction(WI.BreakpointAction.Type.Evaluate);
    446446        this._breakpoint?.addAction(action);
    447447
Note: See TracChangeset for help on using the changeset viewer.