update stage in sync way

This commit is contained in:
Anton Lavrenov 2017-10-17 08:40:18 +05:30
parent a1b180683a
commit 37c2a777c8
4 changed files with 8 additions and 5 deletions

View File

@ -4,6 +4,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Not released][Not released]
### Changed
- Changing size of a stage will redraw it in synchronous way
## [1.7.2][2017-10-11]
### Fixed

View File

@ -2,7 +2,7 @@
* Konva JavaScript Framework v1.7.2
* http://konvajs.github.io/
* Licensed under the MIT or GPL Version 2 licenses.
* Date: Wed Oct 11 2017
* Date: Tue Oct 17 2017
*
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - 2017 by Anton Lavrenov (Konva)
@ -10201,7 +10201,7 @@
for (n = 0; n < len; n++) {
layer = layers[n];
layer.setSize(width, height);
layer.batchDraw();
layer.draw();
}
}
},

4
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -364,7 +364,7 @@
for (n = 0; n < len; n++) {
layer = layers[n];
layer.setSize(width, height);
layer.batchDraw();
layer.draw();
}
}
},