- Change about menu item title to match UI guidelines on Mac OS X, GTK+ and MSW

- Lower-case Slic3r::GUI::about() to match other, custom methods
degen-loop-screen
Henrik Brix Andersen 2012-06-24 12:09:48 +02:00
parent e024c31ce5
commit a861b95b12
1 changed files with 3 additions and 3 deletions

View File

@ -83,8 +83,8 @@ sub OnInit {
# Help menu
my $helpMenu = Wx::Menu->new;
{
$helpMenu->Append(wxID_ABOUT, "&About");
EVT_MENU($frame, wxID_ABOUT, \&About);
$helpMenu->Append(wxID_ABOUT, "&About Slic3r");
EVT_MENU($frame, wxID_ABOUT, \&about);
}
# menubar
@ -106,7 +106,7 @@ sub OnInit {
return 1;
}
sub About {
sub about {
my $frame = shift;
my $info = Wx::AboutDialogInfo->new;