From fd43ada293b4071bf3cb80e42256c607fce28694 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sat, 18 Jan 2014 16:36:13 +0100 Subject: [PATCH] Remove duplicated "Generating skirt" status message --- lib/Slic3r/Print.pm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/Slic3r/Print.pm b/lib/Slic3r/Print.pm index 53abb9c0..7305f93c 100644 --- a/lib/Slic3r/Print.pm +++ b/lib/Slic3r/Print.pm @@ -477,12 +477,10 @@ sub process { }); # make skirt - $status_cb->(88, "Generating skirt"); + $status_cb->(88, "Generating skirt/brim"); $print_step->(STEP_SKIRT, sub { $self->make_skirt; }); - - $status_cb->(88, "Generating skirt"); $print_step->(STEP_BRIM, sub { $self->make_brim; # must come after make_skirt });