From 376df2e3f2335c221156515de2bd48cedc7bb430 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Thu, 15 Dec 2016 11:50:58 +0100 Subject: [PATCH] Minor GUI fix in the prompt for solid rectilinear infill. #3610 --- lib/Slic3r/GUI/Tab.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Slic3r/GUI/Tab.pm b/lib/Slic3r/GUI/Tab.pm index 259ec7752..ffef07066 100644 --- a/lib/Slic3r/GUI/Tab.pm +++ b/lib/Slic3r/GUI/Tab.pm @@ -806,7 +806,7 @@ sub _update { my $new_conf = Slic3r::Config->new; if ($dialog->ShowModal() == wxID_YES) { - $new_conf->set("fill_pattern", 1); + $new_conf->set("fill_pattern", 'rectilinear'); } else { $new_conf->set("fill_density", 40); }