Layers : FRAMESHEET_RESET -> PISKEL_RESET

Framesheet no longer exists.
This commit is contained in:
Julian Descottes
2013-09-29 00:01:18 +02:00
parent ca427e0853
commit be9238c9b1
5 changed files with 14 additions and 14 deletions

View File

@ -17,12 +17,12 @@
ns.HistoryService.prototype.undo = function () {
this.piskelController.getCurrentFrame().loadPreviousState();
$.publish(Events.FRAMESHEET_RESET);
$.publish(Events.PISKEL_RESET);
};
ns.HistoryService.prototype.redo = function () {
this.piskelController.getCurrentFrame().loadNextState();
$.publish(Events.FRAMESHEET_RESET);
$.publish(Events.PISKEL_RESET);
};
})();