瀏覽代碼

* Do not try to autocrop a canvas that has only spaces.

pull/1/head
Sam Hocevar sam 18 年之前
父節點
當前提交
e80a522fcc
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. +3
    -0
      src/filters.c

+ 3
- 0
src/filters.c 查看文件

@@ -51,6 +51,9 @@ void filter_autocrop(cucul_canvas_t *cv)
}
}

if(xmax < xmin || ymax < ymin)
return;

cucul_set_canvas_boundaries(cv, xmin, ymin,
xmax - xmin + 1, ymax - ymin + 1);
}


Loading…
取消
儲存