forked from organicmaps/organicmaps
Merge pull request #6425 from igrechuhin/MAPSME-4723
[MAPSME-4723] [ios] Fixed fast search query enter bug.
This commit is contained in:
commit
473064e60d
5 changed files with 3 additions and 4 deletions
|
@ -21,7 +21,6 @@ using namespace routing::turns;
|
|||
_targetDistance = @(info.m_distToTarget.c_str());
|
||||
_targetUnits = @(info.m_targetUnitsSuffix.c_str());
|
||||
_progress = info.m_completionPercent;
|
||||
auto & f = GetFramework();
|
||||
CLLocation * lastLocation = [MWMLocationManager lastLocation];
|
||||
if (lastLocation && [MWMRouter type] == MWMRouterTypePedestrian)
|
||||
{
|
||||
|
|
|
@ -332,7 +332,6 @@ void setPermissionRequested()
|
|||
MWMLocationManager * manager = [self manager];
|
||||
[manager.predictor setMyPositionMode:mode];
|
||||
[manager processLocationStatus:manager.lastLocationStatus];
|
||||
auto const & f = GetFramework();
|
||||
if ([MWMRouter isRoutingActive])
|
||||
{
|
||||
switch ([MWMRouter type])
|
||||
|
|
|
@ -968,7 +968,7 @@ void registerCellsForTableView(vector<MWMPlacePageCellType> const & cells, UITab
|
|||
kStatProblem : @(osm::Editor::kPlaceDoesNotExistMessage)
|
||||
}
|
||||
atLocation:location];
|
||||
GetFramework().CreateNote(m_mapObject, osm::Editor::NoteProblemType::PlaceDoesNotExist,
|
||||
GetFramework().CreateNote(self->m_mapObject, osm::Editor::NoteProblemType::PlaceDoesNotExist,
|
||||
additional);
|
||||
[self backTap];
|
||||
[self showDropDown];
|
||||
|
|
|
@ -412,6 +412,8 @@ typedef NS_ENUM(NSUInteger, MWMSearchManagerActionBarState) {
|
|||
userInfo:@{
|
||||
kSearchStateKey : @(state)
|
||||
}];
|
||||
if (_state == MWMSearchManagerStateHidden)
|
||||
[self endSearch];
|
||||
_state = state;
|
||||
[self updateTopController];
|
||||
switch (state)
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
@required
|
||||
|
||||
- (void)searchText:(NSString *)text forInputLocale:(NSString *)locale;
|
||||
- (void)tapMyPositionFromHistory;
|
||||
- (void)dismissKeyboard;
|
||||
|
||||
@end
|
||||
|
|
Loading…
Add table
Reference in a new issue