Add menu item shortcut for http://slic3r.org/

degen-loop-screen
Henrik Brix Andersen 2012-07-11 16:31:17 +02:00
parent 772ee033e0
commit 5e5dc02016
1 changed files with 2 additions and 0 deletions

View File

@ -88,8 +88,10 @@ sub OnInit {
my $helpMenu = Wx::Menu->new;
{
$helpMenu->Append(7, "Configuration Wizard…");
$helpMenu->Append(8, "Slic3r Website");
$helpMenu->Append(wxID_ABOUT, "&About Slic3r");
EVT_MENU($frame, 7, sub { $frame->{skeinpanel}->config_wizard });
EVT_MENU($frame, 8, sub { Wx::LaunchDefaultBrowser('http://slic3r.org/') });
EVT_MENU($frame, wxID_ABOUT, \&about);
}