From 0b526afb4ea4aafb611e1adad418542eed65e747 Mon Sep 17 00:00:00 2001
From: Alessandro Ranellucci <aar@cpan.org>
Date: Sat, 21 Sep 2013 20:25:34 +0200
Subject: [PATCH] Change labels in wizard to avoid confusion

---
 lib/Slic3r/Config.pm           | 2 ++
 lib/Slic3r/GUI/ConfigWizard.pm | 3 ++-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/lib/Slic3r/Config.pm b/lib/Slic3r/Config.pm
index 664df75b5..a3cb4bfca 100644
--- a/lib/Slic3r/Config.pm
+++ b/lib/Slic3r/Config.pm
@@ -165,6 +165,7 @@ our $Options = {
     },
     'temperature' => {
         label   => 'Other layers',
+        full_label   => 'Temperature',
         tooltip => 'Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output.',
         sidetext => '°C',
         cli     => 'temperature=i@',
@@ -248,6 +249,7 @@ our $Options = {
     },
     'bed_temperature' => {
         label   => 'Other layers',
+        full_label   => 'Bed temperature',
         tooltip => 'Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output.',
         sidetext => '°C',
         cli     => 'bed-temperature=i',
diff --git a/lib/Slic3r/GUI/ConfigWizard.pm b/lib/Slic3r/GUI/ConfigWizard.pm
index e18456666..efa1117f1 100644
--- a/lib/Slic3r/GUI/ConfigWizard.pm
+++ b/lib/Slic3r/GUI/ConfigWizard.pm
@@ -212,6 +212,7 @@ sub append_option {
         title       => '',
         config      => $self->GetParent->{config},
         options     => [$full_key],
+        full_labels => 1,
     );
     $self->{vsizer}->Add($optgroup->sizer, 0, wxEXPAND | wxTOP | wxBOTTOM, 10);
 }
@@ -350,7 +351,7 @@ sub new {
     $self->append_text('Enter the bed temperature needed for getting your filament to stick to your heated bed, then click Next.');
     $self->append_text('A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed.');
     $self->append_option('bed_temperature');
-
+    
     return $self;
 }