Skip to content

Commit

Permalink
Fixed crash due to wrong access to a hash
Browse files Browse the repository at this point in the history
  • Loading branch information
Photon89 committed Aug 20, 2024
1 parent 75f07a6 commit 6305e69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions share/shutter/resources/modules/Shutter/Pixbuf/Save.pm
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ sub set_quality_setting {
if (defined $settings->get_image_quality($filetype)) {
$self->{_quality} = $settings->get_image_quality($filetype);
} else {
$self->{_quality} = default_image_quality{$filetype};
$self->{_quality} = $default_image_quality->{$filetype};
}
} else {
$self->{_quality} = default_image_quality{$filetype};
$self->{_quality} = $default_image_quality->{$filetype};
}
}

Expand Down

0 comments on commit 6305e69

Please sign in to comment.