Skip to content

Commit

Permalink
VML Painter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pissang committed Mar 29, 2016
1 parent e5372d4 commit b4692ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vml/Painter.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ define(function (require) {
el.__alreadyNotVisible = false;
if (el.__dirty) {
el.beforeBrush && el.beforeBrush();
(el.brushVML || el.brush)(vmlRoot);
(el.brushVML || el.brush).call(el, vmlRoot);
el.afterBrush && el.afterBrush();
}
}
Expand Down

0 comments on commit b4692ae

Please sign in to comment.