From 05b447be42cab92f188364bcdd8d27066150cfe6 Mon Sep 17 00:00:00 2001 From: Jonathan Pobst Date: Wed, 18 Apr 2012 12:54:09 -0500 Subject: [PATCH] [Bug 4419] Use correct animation for button press. --- ApiDemo/App/Animation.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ApiDemo/App/Animation.cs b/ApiDemo/App/Animation.cs index e7effd3af..df47a906d 100644 --- a/ApiDemo/App/Animation.cs +++ b/ApiDemo/App/Animation.cs @@ -28,13 +28,13 @@ protected override void OnCreate (Bundle bundle) button.Click += OnZoomClicked; } - void OnZoomClicked (object sender, EventArgs e) + void OnFadeClicked (object sender, EventArgs e) { StartActivity (new Intent (this, typeof (Controls1))); OverridePendingTransition(Resource.Animation.fade, Resource.Animation.hold); } - void OnFadeClicked (object sender, EventArgs e) + void OnZoomClicked (object sender, EventArgs e) { StartActivity (new Intent (this, typeof (Controls1))); OverridePendingTransition(Resource.Animation.zoom_enter, Resource.Animation.zoom_exit);