fix activity transitions (this time for real)
This commit is contained in:
parent
bfb82bb10c
commit
8a1ac685c8
|
@ -530,7 +530,7 @@ class AccountActivity : BottomSheetActivity(), ActionButtonActivity, HasSupportF
|
||||||
val intent = ComposeActivity.IntentBuilder()
|
val intent = ComposeActivity.IntentBuilder()
|
||||||
.mentionedUsernames(setOf(it.username))
|
.mentionedUsernames(setOf(it.username))
|
||||||
.build(this)
|
.build(this)
|
||||||
startActivityWithSlideInAnimation(intent)
|
startActivity(intent)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1459,7 +1459,7 @@ public final class ComposeActivity
|
||||||
getIntent().getStringExtra(REPLYING_STATUS_CONTENT_EXTRA),
|
getIntent().getStringExtra(REPLYING_STATUS_CONTENT_EXTRA),
|
||||||
getIntent().getStringExtra(REPLYING_STATUS_AUTHOR_USERNAME_EXTRA),
|
getIntent().getStringExtra(REPLYING_STATUS_AUTHOR_USERNAME_EXTRA),
|
||||||
statusVisibility);
|
statusVisibility);
|
||||||
finish();
|
finishWithoutSlideOutAnimation();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -136,7 +136,7 @@ public abstract class SFragment extends BaseFragment {
|
||||||
.repyingStatusAuthor(actionableStatus.getAccount().getLocalUsername())
|
.repyingStatusAuthor(actionableStatus.getAccount().getLocalUsername())
|
||||||
.replyingStatusContent(actionableStatus.getContent().toString())
|
.replyingStatusContent(actionableStatus.getContent().toString())
|
||||||
.build(getContext());
|
.build(getContext());
|
||||||
startActivity(intent);
|
getActivity().startActivity(intent);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void more(final Status status, View view, final int position) {
|
protected void more(final Status status, View view, final int position) {
|
||||||
|
|
Loading…
Reference in New Issue