Gerber Viewer: gerbview -> Gerber Viewer in Settings

This commit is contained in:
Mike Williams 2022-07-25 09:28:01 -04:00
parent 2245e99a89
commit be7104c24c
2 changed files with 3 additions and 2 deletions

View File

@ -1059,7 +1059,7 @@ void EDA_BASE_FRAME::OnPreferences( wxCommandEvent& event )
if( GetFrameType() == FRAME_GERBER )
expand.push_back( book->GetPageCount() );
book->AddPage( new wxPanel( book ), _( "GerbView" ) );
book->AddPage( new wxPanel( book ), _( "Gerber Viewer" ) );
book->AddSubPage( CREATE_PANEL( PANEL_GBR_DISPLAY_OPTIONS ), _( "Display Options" ) );
book->AddSubPage( CREATE_PANEL( PANEL_GBR_EXCELLON_OPTIONS ), _( "Excellon Options" ) );

View File

@ -73,7 +73,8 @@ wxString HOTKEY_STORE::GetSectionName( TOOL_ACTION* aAction )
{ wxT( "eeschema" ), _( "Schematic Editor" ) },
{ wxT( "pcbnew" ), _( "PCB Editor" ) },
{ wxT( "plEditor" ), _( "Drawing Sheet Editor" ), },
{ wxT( "3DViewer" ), _( "3D Viewer" ) }
{ wxT( "3DViewer" ), _( "3D Viewer" ) },
{ wxT( "gerbview" ), _( "Gerber Viewer" ) }
};
wxString appName = GetAppName( aAction );