mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 18:24:17 +08:00
update stage in sync way
This commit is contained in:
parent
a1b180683a
commit
37c2a777c8
@ -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
|
||||
|
4
konva.js
4
konva.js
@ -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
4
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -364,7 +364,7 @@
|
||||
for (n = 0; n < len; n++) {
|
||||
layer = layers[n];
|
||||
layer.setSize(width, height);
|
||||
layer.batchDraw();
|
||||
layer.draw();
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user