changing a size of Konva.Stage will update it in async way (via batchDraw).

This commit is contained in:
Anton Lavrenov 2016-09-21 15:22:08 -04:00
parent 834c1362c6
commit b510582660
4 changed files with 7 additions and 5 deletions

View File

@ -7,6 +7,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## Added
- new properties for `Konva.Text`: `letterSpacing`
### Changed
- changing a size of `Konva.Stage` will update it in async way (via `batchDraw`).
## [1.2.2][2016-09-15]

View File

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

4
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

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