Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/iphone
diff options
context:
space:
mode:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-05-22 13:52:04 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-11-30 16:08:30 +0300
commit4da09701875359b00d81ab00a09c5ddb70a7c83e (patch)
treeb7e9b3ec813c8ec59a7a243ec49e0a1149b72cf5 /iphone
parente3e963d1f6f45f0c89343505a811e61a2fbeb6bd (diff)
Added opacity animation
Diffstat (limited to 'iphone')
-rw-r--r--iphone/Maps/Classes/MapViewController.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/iphone/Maps/Classes/MapViewController.mm b/iphone/Maps/Classes/MapViewController.mm
index 3eb8efedb9..42c27d258d 100644
--- a/iphone/Maps/Classes/MapViewController.mm
+++ b/iphone/Maps/Classes/MapViewController.mm
@@ -244,13 +244,13 @@ typedef NS_ENUM(NSUInteger, UserTouchesAction)
- (IBAction)zoomInPressed:(id)sender
{
[Alohalytics logEvent:kAlohalyticsTapEventKey withValue:@"+"];
- GetFramework().Scale(Framework::SCALE_MAG);
+ GetFramework().Scale(Framework::SCALE_MAG, true);
}
- (IBAction)zoomOutPressed:(id)sender
{
[Alohalytics logEvent:kAlohalyticsTapEventKey withValue:@"-"];
- GetFramework().Scale(Framework::SCALE_MIN);
+ GetFramework().Scale(Framework::SCALE_MIN, true);
}
- (void)popoverControllerDidDismissPopover:(UIPopoverController *)popoverController