ソースを参照

* Fixed cucul_set_canvas_boundaries() bug that prevented good size to be applied on the resized canvas

tags/v0.99.beta14
Jean-Yves Lamoureux jylam 17年前
コミット
4d9b88ff3e
1個のファイルの変更3行の追加3行の削除
  1. +3
    -3
      cucul/canvas.c

+ 3
- 3
cucul/canvas.c ファイルの表示

@@ -484,7 +484,6 @@ int cucul_set_canvas_boundaries(cucul_canvas_t *cv, int x, int y,
cucul_set_frame(cv, f);
cucul_set_frame(new, f);
cucul_blit(new, -x, -y, cv, NULL);

free(cv->frames[f].chars);
free(cv->frames[f].attrs);
}
@@ -493,8 +492,9 @@ int cucul_set_canvas_boundaries(cucul_canvas_t *cv, int x, int y,
cv->frames = new->frames;
free(new);

cucul_set_frame(cv, saved_f);

cucul_set_frame(cv, saved_f);
_cucul_load_frame_info(cv);
return 0;
}


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