From 7fb4adac276af47d5e85be56da5dc003cf6de085 Mon Sep 17 00:00:00 2001 From: Photon89 Date: Mon, 5 Jan 2026 10:14:30 +0100 Subject: [PATCH] Fix #719: Increase max pen/marker width to 300px in Drawing Tool --- share/shutter/resources/modules/Shutter/Draw/DrawingTool.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/shutter/resources/modules/Shutter/Draw/DrawingTool.pm b/share/shutter/resources/modules/Shutter/Draw/DrawingTool.pm index 8d4bcc73..c398d200 100644 --- a/share/shutter/resources/modules/Shutter/Draw/DrawingTool.pm +++ b/share/shutter/resources/modules/Shutter/Draw/DrawingTool.pm @@ -550,7 +550,7 @@ sub setup_bottom_hbox { #line_width my $linew_label = Gtk3::Label->new($self->{_d}->get("Line width") . ":"); - $self->{_line_spin_w} = Gtk3::SpinButton->new_with_range(0.5, 20, 0.1); + $self->{_line_spin_w} = Gtk3::SpinButton->new_with_range(0.5, 300, 0.1); $self->{_line_spin_w}->set_value($self->{_line_width}); $linew_label->set_tooltip_text($self->{_d}->get("Adjust line width"));