File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ pub fn identify_transparency(image: Image) -> Result<Option<Margin>> {
2121 if a > transparency_end {
2222 // the end of the transparent area
2323 margin. top = y as u16 ;
24- dbg ! ( margin. top) ;
2524 break ;
2625 }
2726 }
@@ -31,7 +30,6 @@ pub fn identify_transparency(image: Image) -> Result<Option<Margin>> {
3130 if a > transparency_end {
3231 // the end of the transparent area
3332 margin. bottom = ( height - y - 1 ) as u16 ;
34- dbg ! ( margin. bottom) ;
3533 break ;
3634 }
3735 }
@@ -41,7 +39,6 @@ pub fn identify_transparency(image: Image) -> Result<Option<Margin>> {
4139 if a > transparency_end {
4240 // the end of the transparent area
4341 margin. left = x as u16 ;
44- dbg ! ( margin. left) ;
4542 break ;
4643 }
4744 }
@@ -51,7 +48,6 @@ pub fn identify_transparency(image: Image) -> Result<Option<Margin>> {
5148 if a > transparency_end {
5249 // the end of the transparent area
5350 margin. right = ( width - x - 1 ) as u16 ;
54- dbg ! ( margin. right) ;
5551 break ;
5652 }
5753 }
You can’t perform that action at this time.
0 commit comments