- 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
This commit is contained in:
parent
e024c31ce5
commit
a861b95b12
1 changed files with 3 additions and 3 deletions
|
@ -83,8 +83,8 @@ sub OnInit {
|
||||||
# Help menu
|
# Help menu
|
||||||
my $helpMenu = Wx::Menu->new;
|
my $helpMenu = Wx::Menu->new;
|
||||||
{
|
{
|
||||||
$helpMenu->Append(wxID_ABOUT, "&About");
|
$helpMenu->Append(wxID_ABOUT, "&About Slic3r");
|
||||||
EVT_MENU($frame, wxID_ABOUT, \&About);
|
EVT_MENU($frame, wxID_ABOUT, \&about);
|
||||||
}
|
}
|
||||||
|
|
||||||
# menubar
|
# menubar
|
||||||
|
@ -106,7 +106,7 @@ sub OnInit {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub About {
|
sub about {
|
||||||
my $frame = shift;
|
my $frame = shift;
|
||||||
|
|
||||||
my $info = Wx::AboutDialogInfo->new;
|
my $info = Wx::AboutDialogInfo->new;
|
||||||
|
|
Loading…
Reference in a new issue