mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
changing a size of Konva.Stage
will update it in async way (via batchDraw
).
This commit is contained in:
parent
834c1362c6
commit
b510582660
@ -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]
|
||||
|
||||
|
4
konva.js
4
konva.js
@ -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
4
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -346,7 +346,7 @@
|
||||
for(n = 0; n < len; n++) {
|
||||
layer = layers[n];
|
||||
layer.setSize(width, height);
|
||||
layer.draw();
|
||||
layer.batchDraw();
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user