https -> http in manual URL

xs
Alessandro Ranellucci 2013-06-24 20:38:20 +02:00
parent f5cc446853
commit 1f50d9c7e8
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ sub OnInit {
EVT_MENU($frame, MI_CONF_WIZARD, sub { $self->{skeinpanel}->config_wizard });
EVT_MENU($frame, MI_WEBSITE, sub { Wx::LaunchDefaultBrowser('http://slic3r.org/') });
EVT_MENU($frame, MI_VERSIONCHECK, sub { Slic3r::GUI->check_version(manual => 1) });
EVT_MENU($frame, MI_DOCUMENTATION, sub { Wx::LaunchDefaultBrowser('https://manual.slic3r.org/') });
EVT_MENU($frame, MI_DOCUMENTATION, sub { Wx::LaunchDefaultBrowser('http://manual.slic3r.org/') });
EVT_MENU($frame, wxID_ABOUT, \&about);
}