Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dk committed Dec 7, 2024
1 parent f5be67c commit 984ee91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Prima/ScrollBar.pm
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ sub on_paint

for my $part ( qw( left right))
{
my $p = $self->{$part} or next;
my $p = $self->{$part};
next unless $p->{rect};
my @r = @{$p-> {rect}};
if ( $skin ne 'flat') {
$canvas-> color( $c3d[1]);
Expand Down

0 comments on commit 984ee91

Please sign in to comment.