From afb7e675b8719e621241f81869e095ba88e9970c Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 17 Jun 2014 00:30:44 +0200 Subject: [PATCH] Set preset dirty after setting bed shape --- lib/Slic3r/GUI/Tab.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Slic3r/GUI/Tab.pm b/lib/Slic3r/GUI/Tab.pm index 4b2d91bb04..1561201513 100644 --- a/lib/Slic3r/GUI/Tab.pm +++ b/lib/Slic3r/GUI/Tab.pm @@ -694,6 +694,7 @@ sub build { if ($dlg->ShowModal == wxID_OK) { my $value = $dlg->GetValue; $self->{config}->set('bed_shape', $value); + $self->set_dirty(1); $self->on_value_change('bed_shape', $value); } });