diff --git a/lib/timeline/component/Group.js b/lib/timeline/component/Group.js index 79ccf60d..2f357e3b 100644 --- a/lib/timeline/component/Group.js +++ b/lib/timeline/component/Group.js @@ -257,7 +257,7 @@ Group.prototype.redraw = function(range, margin, forceRestack) { var me = this; var limitSize = false; util.forEach(this.items, function (item) { - if (!item.displayed) { + if (!item.dom) { // If this item has never been displayed then the dom property will not be defined, this means we need to measure the size item.redraw(); me.visibleItems.push(item); }