CvPcb: fix incorrect tool tip message.

This commit is contained in:
jean-pierre charras 2016-02-25 19:48:47 +01:00
parent 8c1b91255c
commit a9427f8999
1 changed files with 3 additions and 5 deletions

View File

@ -87,7 +87,7 @@ void CVPCB_MAINFRAME::ReCreateHToolbar()
KiBitmap( module_filtered_list_xpm ),
wxNullBitmap,
true, NULL,
_( "Filter footprint list by keywords" ),
_( "Filter footprint list by schematic components keywords" ),
wxEmptyString );
m_mainToolBar->AddTool( ID_CVPCB_FOOTPRINT_DISPLAY_PIN_FILTERED_LIST,
@ -107,12 +107,10 @@ void CVPCB_MAINFRAME::ReCreateHToolbar()
m_mainToolBar->AddTool( ID_CVPCB_FOOTPRINT_DISPLAY_BY_NAME,
KiBitmap( module_name_filtered_list_xpm ),
wxNullBitmap, true, NULL,
_( "Find footprint by its name\nor filter the footprint list by the partial name\n"
"Ctrl+F to call the dialog to enter the filter string" ),
_( "Filter footprint list using a partial name or a pattern" ),
wxEmptyString );
if( m_tcFilterString == NULL )
m_tcFilterString = new wxTextCtrl( m_mainToolBar, ID_CVPCB_FILTER_TEXT_EDIT );
m_tcFilterString = new wxTextCtrl( m_mainToolBar, ID_CVPCB_FILTER_TEXT_EDIT );
m_mainToolBar->AddControl( m_tcFilterString );