diff --git a/lib/Slic3r/GUI/SkeinPanel.pm b/lib/Slic3r/GUI/SkeinPanel.pm index 1785f13c5..acdc59c95 100644 --- a/lib/Slic3r/GUI/SkeinPanel.pm +++ b/lib/Slic3r/GUI/SkeinPanel.pm @@ -114,9 +114,9 @@ sub new { $make_tab->([qw(notes)], [qw(extrusion output)]), ); - $tabpanel->AddPage($tabs[0], "Printing"); + $tabpanel->AddPage($tabs[0], "Print"); $tabpanel->AddPage($tabs[1], "Cooling"); - $tabpanel->AddPage($tabs[2], "Extruding"); + $tabpanel->AddPage($tabs[2], "Printer and Filament"); $tabpanel->AddPage($tabs[3], "GCODE"); $tabpanel->AddPage($tabs[4], "Advanced"); @@ -144,13 +144,16 @@ sub new { my $font = Wx::Font->new(10, wxDEFAULT, wxNORMAL, wxNORMAL); my $update_sizer = Wx::BoxSizer->new(wxVERTICAL); - my $text = Wx::StaticText->new($self, -1, "Version $Slic3r::VERSION"); - $text->SetFont($font); - $update_sizer->Add($text, 0, wxALIGN_CENTRE); + { + my $text = Wx::StaticText->new($self, -1, "Version $Slic3r::VERSION"); + $text->SetFont($font); + $update_sizer->Add($text, 0, wxALIGN_CENTER); - my $link = Wx::HyperlinkCtrl->new($self, -1, "Check for updates", "http://slic3r.org/"); - $link->SetFont($font); - $update_sizer->Add($link, 0, wxALIGN_CENTRE); + #my $link = Wx::HyperlinkCtrl->new($self, -1, "Check for updates at slic3r.org", "http://slic3r.org/"); + my $link = Wx::StaticText->new($self, -1, "Check for updates at http://slic3r.org/"); + $link->SetFont($font); + $update_sizer->Add($link, 0, wxALIGN_CENTER); + } $buttons_sizer->Add($update_sizer, 0, wxEXPAND); diff --git a/lib/Slic3r/Polygon.pm b/lib/Slic3r/Polygon.pm index 2d7f636d1..aa8e73f25 100644 --- a/lib/Slic3r/Polygon.pm +++ b/lib/Slic3r/Polygon.pm @@ -113,6 +113,7 @@ sub subdivide { $num_points++ if $len % $max_length; # $num_points is the number of points to add between $i-1 and $i + next if $num_points == -1; my $spacing = $len / ($num_points + 1); my @new_points = map Slic3r::Point->new($_), map Slic3r::Geometry::point_along_segment($self->[$i-1], $self->[$i], $spacing * $_),