From a861b95b122c13860af4ddcec15fe0faa9cd719f Mon Sep 17 00:00:00 2001 From: Henrik Brix Andersen Date: Sun, 24 Jun 2012 12:09:48 +0200 Subject: [PATCH] - 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 --- lib/Slic3r/GUI.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Slic3r/GUI.pm b/lib/Slic3r/GUI.pm index c1d5c2d5..3aa77604 100644 --- a/lib/Slic3r/GUI.pm +++ b/lib/Slic3r/GUI.pm @@ -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;