forked from organicmaps/organicmaps
[ios] Fixed next turn on iPad.
This commit is contained in:
parent
08ba700e9e
commit
69675d0643
1 changed files with 4 additions and 0 deletions
|
@ -105,12 +105,16 @@
|
|||
|
||||
- (void)hideHelperPanels
|
||||
{
|
||||
if (IPAD)
|
||||
return;
|
||||
for (MWMRouteHelperPanel * p in self.helperPanels)
|
||||
[UIView animateWithDuration:kDefaultAnimationDuration animations:^{ p.alpha = 0.; }];
|
||||
}
|
||||
|
||||
- (void)showHelperPanels
|
||||
{
|
||||
if (IPAD)
|
||||
return;
|
||||
for (MWMRouteHelperPanel * p in self.helperPanels)
|
||||
[UIView animateWithDuration:kDefaultAnimationDuration animations:^{ p.alpha = 1.; }];
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue