浏览代码

CTRLPainter will now update image when current palette color is changed.

dev-bank
Bryan Miller 6 年前
父节点
当前提交
44a568a401
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. +7
    -0
      app/js/ctrls/CTRLPainter.js

+ 7
- 0
app/js/ctrls/CTRLPainter.js 查看文件

}).bind(this); }).bind(this);
GlobalEvents.listen("resize", handle_resize); GlobalEvents.listen("resize", handle_resize);


var handle_palinfochanged = (function(pdat){
RenderD();
}).bind(this);

var handle_setapppalette = (function(pal){ var handle_setapppalette = (function(pal){
if (this.__palette !== null)
this.__palette.unlisten("palettes_changed", handle_palinfochanged);
this.__palette = pal; this.__palette = pal;
this.__palette.listen("palettes_changed", handle_palinfochanged);
if (this.__surface !== null){ if (this.__surface !== null){
this.__surface.palette = pal; this.__surface.palette = pal;
if (this.__onePaletteMode === false) if (this.__onePaletteMode === false)

正在加载...
取消
保存