forked from organicmaps/organicmaps
Do search for address in all possible modes.
This commit is contained in:
parent
1e6f2bc481
commit
b98523245f
1 changed files with 5 additions and 1 deletions
|
@ -277,7 +277,11 @@ void Engine::SearchAsync()
|
|||
}
|
||||
}
|
||||
else
|
||||
m_pQuery->Search(res, params.NeedSearch(SearchParams::SEARCH_ADDRESS));
|
||||
{
|
||||
// Do search for address in all modes.
|
||||
// params.NeedSearch(SearchParams::SEARCH_ADDRESS)
|
||||
m_pQuery->Search(res, true);
|
||||
}
|
||||
}
|
||||
catch (Query::CancelException const &)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue