|
|
@ -282,9 +282,9 @@ Group.prototype._redrawItems = function(forceRestack, lastIsVisible, margin, ran |
|
|
|
var redrawQueueLength = 0; |
|
|
|
|
|
|
|
util.forEach(this.items, function (item, key) { |
|
|
|
if (!item.displayed) { |
|
|
|
if (!item.displayed && (item.isVisible(range) || !item.dom)) { |
|
|
|
var returnQueue = true; |
|
|
|
redrawQueue[key] = item.redraw(returnQueue); |
|
|
|
redrawQueue[key] = item.show(returnQueue); |
|
|
|
redrawQueueLength = redrawQueue[key].length; |
|
|
|
me.visibleItems.push(item); |
|
|
|
} |
|
|
@ -301,7 +301,9 @@ Group.prototype._redrawItems = function(forceRestack, lastIsVisible, margin, ran |
|
|
|
} |
|
|
|
|
|
|
|
util.forEach(this.items, function (item) { |
|
|
|
item.repositionX(limitSize); |
|
|
|
if(item.displayed) { |
|
|
|
item.repositionX(limitSize); |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
if (this.doInnerStack && this.itemSet.options.stackSubgroups) { |
|
|
|