Title: [198045] trunk/Source/WebInspectorUI
Revision
198045
Author
[email protected]
Date
2016-03-11 13:53:34 -0800 (Fri, 11 Mar 2016)

Log Message

Web Inspector: Wrong TimelineOverview height after switching from Events to Frames
https://bugs.webkit.org/show_bug.cgi?id=155366
<rdar://problem/25111028>

Reviewed by Timothy Hatcher.

* UserInterface/Views/TimelineRecordingContentView.js:
(WebInspector.TimelineRecordingContentView.prototype._currentContentViewDidChange):
Update the overview height after setting a new view mode.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (198044 => 198045)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-03-11 21:47:19 UTC (rev 198044)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-03-11 21:53:34 UTC (rev 198045)
@@ -1,5 +1,17 @@
 2016-03-11  Matt Baker  <[email protected]>
 
+        Web Inspector: Wrong TimelineOverview height after switching from Events to Frames
+        https://bugs.webkit.org/show_bug.cgi?id=155366
+        <rdar://problem/25111028>
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/TimelineRecordingContentView.js:
+        (WebInspector.TimelineRecordingContentView.prototype._currentContentViewDidChange):
+        Update the overview height after setting a new view mode.
+
+2016-03-11  Matt Baker  <[email protected]>
+
         Web Inspector: Make it possible to disable TimelineRuler UI
         https://bugs.webkit.org/show_bug.cgi?id=155348
         <rdar://problem/25103505>

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRecordingContentView.js (198044 => 198045)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRecordingContentView.js	2016-03-11 21:47:19 UTC (rev 198044)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRecordingContentView.js	2016-03-11 21:53:34 UTC (rev 198045)
@@ -378,6 +378,7 @@
             newViewMode = WebInspector.TimelineOverview.ViewMode.Timelines;
 
         this._timelineOverview.viewMode = newViewMode;
+        this._updateTimelineOverviewHeight();
 
         if (timelineView) {
             this._updateTimelineViewSelection(timelineView);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to