Fixed initialization bug + performance issue with jquery pub sub
This commit is contained in:
parent
12c9fececb
commit
e1af86b647
2 changed files with 1 additions and 6 deletions
|
@ -83,7 +83,7 @@ $.namespace("pskl");
|
|||
});
|
||||
|
||||
$.subscribe('FRAMESHEET_RESET', function(evt, frameId) {
|
||||
piskel.redraw();
|
||||
piskel.render();
|
||||
});
|
||||
var drawingLoop = new pskl.rendering.DrawingLoop();
|
||||
drawingLoop.addCallback(this.render, this);
|
||||
|
|
|
@ -84,11 +84,6 @@
|
|||
if(color != Constants.TRANSPARENT_COLOR) {
|
||||
context.fillStyle = color;
|
||||
context.fillRect(this.getFramePos_(col), this.getFramePos_(row), this.dpi, this.dpi);
|
||||
}
|
||||
|
||||
if(color != Constants.SELECTION_TRANSPARENT_COLOR) {
|
||||
// TODO(vincz): Found a better design to update the palette, it's called too frequently.
|
||||
$.publish(Events.COLOR_USED, [color]);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue