add new pin style to schema file, minor change kicad command frame icon

This commit is contained in:
Andrey Fedorushkov
2010-09-26 09:35:29 +04:00
parent 897ec5b0f7
commit 3ae0df15ee
2 changed files with 16 additions and 2 deletions
+2 -2
View File
@@ -9,7 +9,7 @@
#include "kicad.h"
#include "../bitmap2component/bitmap2component_16x16.xpm"
#include "../bitmap2component/bitmap2component.xpm"
RIGHT_KM_FRAME::RIGHT_KM_FRAME( WinEDA_MainFrame* parent ) :
wxSashLayoutWindow( parent, wxID_ANY )
@@ -82,7 +82,7 @@ void RIGHT_KM_FRAME::CreateCommandToolbar( void )
btn = AddBitmapButton( ID_TO_GERBVIEW, wxBitmap( icon_gerbview_xpm ) );
btn->SetToolTip( _( "GerbView (Gerber viewer)" ) );
btn = AddBitmapButton( ID_TO_BITMAP_CONVERTER, wxBitmap( bitmap2component_16x16_xpm ) );
btn = AddBitmapButton( ID_TO_BITMAP_CONVERTER, wxBitmap( bitmap2component_xpm ) );
btn->SetToolTip( _( "Bitmap2Component (a tool to build a logo from a bitmap)\n\
Creates a component (for Eeschema) or a footprint (for Pcbnew) that shows a B&W picture" ) );
}