0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 12:02:16 +02:00

Fix exit animation appearing below icons in the launcher

This commit is contained in:
Tim Rae 2015-12-03 22:38:58 +09:00
parent f8abccecff
commit baf7f0c10e

View File

@ -27,7 +27,7 @@ public class ActivityTransitionAnimation {
} else if (direction == UP) {
activity.overridePendingTransition(R.anim.slide_up_in, R.anim.slide_up_out);
} else if (direction == DOWN) {
activity.overridePendingTransition(R.anim.slide_down_in, R.anim.slide_down_out);
// this is the default animation, we shouldn't try to override it
} else if (direction == DIALOG_EXIT) {
activity.overridePendingTransition(R.anim.none, R.anim.dialog_exit);
} else if (direction == NONE) {