Title: [203102] trunk/Source/WebInspectorUI
Revision
203102
Author
[email protected]
Date
2016-07-11 20:30:05 -0700 (Mon, 11 Jul 2016)

Log 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 <[email protected]> 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.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (203101 => 203102)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-07-12 00:57:35 UTC (rev 203101)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-07-12 03:30:05 UTC (rev 203102)
@@ -1,3 +1,15 @@
+2016-07-11  Joseph Pecoraro  <[email protected]>
+
+        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>
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/ScriptProfileTimelineView.js:
+        (WebInspector.ScriptProfileTimelineView.prototype._profileOrientationButtonClicked):
+        Pass the value of the setting, not the setting itself.
+
 2016-07-11  Nikita Vasilyev  <[email protected]>
 
         Web Inspector: Transition and Animation sections in Visual Styles sidebar should have more spacing to their left

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ScriptProfileTimelineView.js (203101 => 203102)


--- trunk/Source/WebInspectorUI/UserInterface/Views/ScriptProfileTimelineView.js	2016-07-12 00:57:35 UTC (rev 203101)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ScriptProfileTimelineView.js	2016-07-12 03:30:05 UTC (rev 203102)
@@ -142,7 +142,7 @@
             newOrientation = WebInspector.ScriptProfileTimelineView.ProfileOrientation.TopDown;
 
         WebInspector.ScriptProfileTimelineView.profileOrientationSetting.value = newOrientation;
-        this._showProfileViewForOrientation(newOrientation, WebInspector.ScriptProfileTimelineView.profileTypeSetting);
+        this._showProfileViewForOrientation(newOrientation, WebInspector.ScriptProfileTimelineView.profileTypeSetting.value);
 
         this.dispatchEventToListeners(WebInspector.ContentView.Event.SelectionPathComponentsDidChange);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to