diff --git a/src/item/Group.js b/src/item/Group.js index ab7b76ce..8ff24104 100644 --- a/src/item/Group.js +++ b/src/item/Group.js @@ -12,11 +12,13 @@ Group = Item.extend({ }, draw: function(ctx) { + ctx.save(); for (var i = 0, l = this.children.length; i < l; i++) { this.children[i].draw(ctx); if(this.clipped & i == 0) ctx.clip(); } + ctx.restore(); }, getBounds: function() {