Changeset 203102 in webkit


Ignore:
Timestamp:
Jul 11, 2016, 8:30:05 PM (9 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: ProfileView sometimes shows Top Functions data despite Top Functions being disabled
https://bugs.webkit.org/show_bug.cgi?id=159660
<rdar://problem/27291647>

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-07-11
Reviewed by Timothy Hatcher.

  • UserInterface/Views/ScriptProfileTimelineView.js:

(WebInspector.ScriptProfileTimelineView.prototype._profileOrientationButtonClicked):
Pass the value of the setting, not the setting itself.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r203080 r203102  
     12016-07-11  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: ProfileView sometimes shows Top Functions data despite Top Functions being disabled
     4        https://bugs.webkit.org/show_bug.cgi?id=159660
     5        <rdar://problem/27291647>
     6
     7        Reviewed by Timothy Hatcher.
     8
     9        * UserInterface/Views/ScriptProfileTimelineView.js:
     10        (WebInspector.ScriptProfileTimelineView.prototype._profileOrientationButtonClicked):
     11        Pass the value of the setting, not the setting itself.
     12
    1132016-07-11  Nikita Vasilyev  <nvasilyev@apple.com>
    214
  • trunk/Source/WebInspectorUI/UserInterface/Views/ScriptProfileTimelineView.js

    r202010 r203102  
    143143
    144144        WebInspector.ScriptProfileTimelineView.profileOrientationSetting.value = newOrientation;
    145         this._showProfileViewForOrientation(newOrientation, WebInspector.ScriptProfileTimelineView.profileTypeSetting);
     145        this._showProfileViewForOrientation(newOrientation, WebInspector.ScriptProfileTimelineView.profileTypeSetting.value);
    146146
    147147        this.dispatchEventToListeners(WebInspector.ContentView.Event.SelectionPathComponentsDidChange);
Note: See TracChangeset for help on using the changeset viewer.