Skip to content

Commit

Permalink
Fix issue with weird exiting animation from conversation
Browse files Browse the repository at this point in the history
Fixes signalapp#1312
// FREEBIE
  • Loading branch information
mcginty committed Apr 8, 2014
1 parent 7ceaf59 commit 7b3f2c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/thoughtcrime/securesms/ConversationActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ protected void onResume() {
protected void onPause() {
super.onPause();
MessageNotifier.setVisibleThread(-1L);
overridePendingTransition(R.anim.fade_scale_in, R.anim.slide_to_right);
if (isFinishing()) overridePendingTransition(R.anim.fade_scale_in, R.anim.slide_to_right);
}

@Override
Expand Down

0 comments on commit 7b3f2c1

Please sign in to comment.