Hide search button on MSW.

Fixes https://gitlab.com/kicad/code/kicad/issues/11743
This commit is contained in:
Jeff Young 2022-09-15 23:22:59 +01:00
parent ce9adeaf51
commit 9a4a68fb5e
1 changed files with 7 additions and 0 deletions

View File

@ -257,6 +257,12 @@ wxString LIB_TREE::GetSearchString() const
void LIB_TREE::updateRecentSearchMenu()
{
#ifdef __WXMSW__
// Sadly there's a bug somewhere (presumably in wxWidgets, although possibly in the way we
// interact with wxWidgets) that causes the search button and drop-down menu to OK the dialog
// on MSW, resulting in very unexpected behaviour. #11743
m_query_ctrl->ShowSearchButton( false );
#else
wxString newEntry = GetSearchString();
std::vector<wxString>& recents = g_recentSearches[ m_recentSearchesKey ];
@ -281,6 +287,7 @@ void LIB_TREE::updateRecentSearchMenu()
menu->Append( wxID_ANY, _( "recent searches" ) );
m_query_ctrl->SetMenu( menu );
#endif
}