Browse Source

Gerber Viewer: gerbview -> Gerber Viewer in Settings

7.0
Mike Williams 3 years ago
parent
commit
be7104c24c
  1. 2
      common/eda_base_frame.cpp
  2. 3
      common/hotkey_store.cpp

2
common/eda_base_frame.cpp

@ -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" ) );

3
common/hotkey_store.cpp

@ -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 );

Loading…
Cancel
Save