Skip to content

Commit e93b817

Browse files
authored
Merge pull request #793 from shutter-project/fix-719
Fix #719: Increase max pen/marker width to 300px in Drawing Tool
2 parents f6c046e + 7fb4ada commit e93b817

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

share/shutter/resources/modules/Shutter/Draw/DrawingTool.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ sub setup_bottom_hbox {
550550

551551
#line_width
552552
my $linew_label = Gtk3::Label->new($self->{_d}->get("Line width") . ":");
553-
$self->{_line_spin_w} = Gtk3::SpinButton->new_with_range(0.5, 20, 0.1);
553+
$self->{_line_spin_w} = Gtk3::SpinButton->new_with_range(0.5, 300, 0.1);
554554
$self->{_line_spin_w}->set_value($self->{_line_width});
555555

556556
$linew_label->set_tooltip_text($self->{_d}->get("Adjust line width"));

0 commit comments

Comments
 (0)