Skip to content

Commit

Permalink
fix(imagedata): image from origin data
Browse files Browse the repository at this point in the history
  • Loading branch information
lzxue committed Apr 10, 2019
1 parent df3ccc9 commit 3928fe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layer/imageLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default class imageLayer extends Layer {
const source = this.layerSource;
const { opacity } = this.get('styleOptions');
// 加载 完成事件
source.data.images.then(images => {
source.originData.images.then(images => {
this.layerData[0].images = images;
const buffer = new ImageBuffer({
layerData: this.layerData
Expand Down

0 comments on commit 3928fe5

Please sign in to comment.