From dbc42f68418cb6d7ca41f10401ac469f402d8ec9 Mon Sep 17 00:00:00 2001 From: Henrik Brix Andersen Date: Wed, 27 Jun 2012 19:56:47 +0200 Subject: [PATCH] Make it more clear that the wizard uses your current configuration as basis --- lib/Slic3r/GUI/ConfigWizard.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Slic3r/GUI/ConfigWizard.pm b/lib/Slic3r/GUI/ConfigWizard.pm index a4e953233d..6f55347b33 100644 --- a/lib/Slic3r/GUI/ConfigWizard.pm +++ b/lib/Slic3r/GUI/ConfigWizard.pm @@ -211,8 +211,8 @@ sub new { my ($parent) = @_; my $self = $class->SUPER::new($parent, 'Welcome to the Slic3r Configuration Wizard'); - $self->append_text('This configuration wizard will guide you through the most important settings of Slic3r in a few easy steps. ' . - 'Configuration will be based on your current configuration.'); + $self->append_text('This configuration wizard will guide you through the most important settings of Slic3r in a few easy steps.'); + $self->append_text('Configuration will be based on your current configuration.'); $self->append_text('To continue, click Next.'); return $self;