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>> {
21
21
if a > transparency_end {
22
22
// the end of the transparent area
23
23
margin. top = y as u16 ;
24
- dbg ! ( margin. top) ;
25
24
break ;
26
25
}
27
26
}
@@ -31,7 +30,6 @@ pub fn identify_transparency(image: Image) -> Result<Option<Margin>> {
31
30
if a > transparency_end {
32
31
// the end of the transparent area
33
32
margin. bottom = ( height - y - 1 ) as u16 ;
34
- dbg ! ( margin. bottom) ;
35
33
break ;
36
34
}
37
35
}
@@ -41,7 +39,6 @@ pub fn identify_transparency(image: Image) -> Result<Option<Margin>> {
41
39
if a > transparency_end {
42
40
// the end of the transparent area
43
41
margin. left = x as u16 ;
44
- dbg ! ( margin. left) ;
45
42
break ;
46
43
}
47
44
}
@@ -51,7 +48,6 @@ pub fn identify_transparency(image: Image) -> Result<Option<Margin>> {
51
48
if a > transparency_end {
52
49
// the end of the transparent area
53
50
margin. right = ( width - x - 1 ) as u16 ;
54
- dbg ! ( margin. right) ;
55
51
break ;
56
52
}
57
53
}
You can’t perform that action at this time.
0 commit comments