diff --git a/src/ui/View.js b/src/ui/View.js index 0e3e6944..841f2153 100644 --- a/src/ui/View.js +++ b/src/ui/View.js @@ -59,7 +59,7 @@ var View = this.View = Base.extend({ if (that._onFrameCallback) { that._onFrameCallback(0, true); } else { - that.draw(); + that.draw(true); } } }); @@ -328,7 +328,7 @@ var View = this.View = Base.extend({ }); before = now; // Automatically draw view on each frame. - that.draw(); + that.draw(true); }; // Call the onFrame handler straight away, initializing the sequence // of onFrame calls.