Skip to content

Commit 14fc8b1

Browse files
committed
typo fix
1 parent 1d3f163 commit 14fc8b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Prima/Image/gif.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ sub init
8282
}
8383

8484

85-
sub transparent
85+
sub is_transparent
8686
{
8787
my $self = $_[0];
8888
$self-> Transparent-> checked( $_[1]);
@@ -92,7 +92,7 @@ sub transparent
9292
sub Transparent_Check
9393
{
9494
my ( $self, $tr) = @_;
95-
$self-> transparent( $tr-> checked);
95+
$self-> is_transparent( $tr-> checked);
9696
}
9797

9898
sub on_change
@@ -102,7 +102,7 @@ sub on_change
102102
return unless $image;
103103
$self-> Interlaced-> checked( exists( $image-> {extras}-> {interlaced}) ?
104104
$image-> {extras}-> {interlaced} : $codec-> {saveInput}-> {interlaced});
105-
$self-> transparent( $image-> {extras}-> {transparentColorIndex} ? 1 : 0);
105+
$self-> is_transparent( $image-> {extras}-> {transparentColorIndex} ? 1 : 0);
106106
$self-> TC-> image( $image);
107107
$self-> TC-> index( exists( $image-> {extras}-> {transparentColorIndex}) ?
108108
$image-> {extras}-> {transparentColorIndex} : 0);

0 commit comments

Comments
 (0)