Use same path icon for the Configure Paths menu option
Also move the path configure item above the General Options to align better with the menu in pcbnew.
This commit is contained in:
parent
8a21641639
commit
4f1b510750
|
@ -635,6 +635,13 @@ static void preparePreferencesMenu( SCH_EDIT_FRAME* aFrame, wxMenu* aParentMenu
|
|||
_( "Edit the global and project symbol library tables (list of active libraries)." ),
|
||||
KiBitmap( library_table_xpm ) );
|
||||
|
||||
// Path configuration edit dialog.
|
||||
AddMenuItem( aParentMenu,
|
||||
ID_PREFERENCES_CONFIGURE_PATHS,
|
||||
_( "Configure &Paths" ),
|
||||
_( "Edit path configuration environment variables" ),
|
||||
KiBitmap( path_xpm ) );
|
||||
|
||||
// Options (Preferences on WXMAC)
|
||||
#ifdef __WXMAC__
|
||||
aParentMenu->Append( wxID_PREFERENCES );
|
||||
|
@ -646,13 +653,6 @@ static void preparePreferencesMenu( SCH_EDIT_FRAME* aFrame, wxMenu* aParentMenu
|
|||
KiBitmap( preference_xpm ) );
|
||||
#endif // __WXMAC__
|
||||
|
||||
// Path configuration edit dialog.
|
||||
AddMenuItem( aParentMenu,
|
||||
ID_PREFERENCES_CONFIGURE_PATHS,
|
||||
_( "Configure &Paths" ),
|
||||
_( "Edit path configuration environment variables" ),
|
||||
KiBitmap( editor_xpm ) );
|
||||
|
||||
// Language submenu
|
||||
aParentMenu->AppendSeparator();
|
||||
Pgm().AddMenuLanguageList( aParentMenu );
|
||||
|
|
Loading…
Reference in New Issue