CvPcb: fix incorrect tool tip message.
This commit is contained in:
parent
8c1b91255c
commit
a9427f8999
|
@ -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 );
|
||||
|
||||
|
|
Loading…
Reference in New Issue