Procházet zdrojové kódy

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

pull/1/head
Sam Hocevar sam před 18 roky
rodič
revize
e80a522fcc
1 změnil soubory, kde provedl 3 přidání a 0 odebrání
  1. +3
    -0
      src/filters.c

+ 3
- 0
src/filters.c Zobrazit soubor

@@ -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);
}


Načítá se…
Zrušit
Uložit