ソースを参照

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 ファイルの表示

@@ -170,8 +170,15 @@ class CTRLPainter {
}).bind(this);
GlobalEvents.listen("resize", handle_resize);

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

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

読み込み中…
キャンセル
保存