Changeset 203102 in webkit
- Timestamp:
- Jul 11, 2016, 8:30:05 PM (9 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r203080 r203102 1 2016-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 1 13 2016-07-11 Nikita Vasilyev <nvasilyev@apple.com> 2 14 -
trunk/Source/WebInspectorUI/UserInterface/Views/ScriptProfileTimelineView.js
r202010 r203102 143 143 144 144 WebInspector.ScriptProfileTimelineView.profileOrientationSetting.value = newOrientation; 145 this._showProfileViewForOrientation(newOrientation, WebInspector.ScriptProfileTimelineView.profileTypeSetting );145 this._showProfileViewForOrientation(newOrientation, WebInspector.ScriptProfileTimelineView.profileTypeSetting.value); 146 146 147 147 this.dispatchEventToListeners(WebInspector.ContentView.Event.SelectionPathComponentsDidChange);
Note:
See TracChangeset
for help on using the changeset viewer.