Swapped part editor icon order to be consistant with footprint editor

Signed-off-by: Joseph Y. Chen <joseph.chen59@yahoo.com>
This commit is contained in:
Joseph Y. Chen 2017-02-19 22:50:23 -07:00 committed by Wayne Stambaugh
parent 6fdccc1829
commit cc11c269e3
1 changed files with 3 additions and 3 deletions

View File

@ -110,13 +110,13 @@ void LIB_EDIT_FRAME::ReCreateHToolbar()
wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_HORZ_LAYOUT );
// Set up toolbar
m_mainToolBar->AddTool( ID_LIBEDIT_SELECT_CURRENT_LIB, wxEmptyString, KiBitmap( library_xpm ),
_( "Select working library" ) );
m_mainToolBar->AddTool( ID_LIBEDIT_SAVE_CURRENT_LIB, wxEmptyString,
KiBitmap( save_library_xpm ),
_( "Save current library to disk" ) );
m_mainToolBar->AddTool( ID_LIBEDIT_SELECT_CURRENT_LIB, wxEmptyString, KiBitmap( library_xpm ),
_( "Select working library" ) );
m_mainToolBar->AddTool( ID_LIBEDIT_DELETE_PART, wxEmptyString, KiBitmap( delete_xpm ),
_( "Delete component in current library" ) );