| Index: Source/devtools/front_end/ui_lazy/TimelineOverviewPane.js
|
| diff --git a/Source/devtools/front_end/ui_lazy/TimelineOverviewPane.js b/Source/devtools/front_end/ui_lazy/TimelineOverviewPane.js
|
| index 9ec0dae79af96d8f648772ffbdc528bd4d376d17..1a12bcefcc58af89db89ecbb2bf899a57eb7e63a 100644
|
| --- a/Source/devtools/front_end/ui_lazy/TimelineOverviewPane.js
|
| +++ b/Source/devtools/front_end/ui_lazy/TimelineOverviewPane.js
|
| @@ -55,6 +55,7 @@ WebInspector.TimelineOverviewPane = function(prefix)
|
| this._popoverHelper.setTimeout(0);
|
|
|
| this._cursorEnabled = false;
|
| + this._lastWidth = 0;
|
| }
|
|
|
| WebInspector.TimelineOverviewPane.Events = {
|
| @@ -144,6 +145,10 @@ WebInspector.TimelineOverviewPane.prototype = {
|
| */
|
| onResize: function()
|
| {
|
| + var width = this.element.offsetWidth;
|
| + if (width === this._lastWidth)
|
| + return;
|
| + this._lastWidth = width;
|
| this.update();
|
| },
|
|
|
|
|