mirror of https://github.com/tuskyapp/Tusky.git
Browse Source
To reproduce, login an additional account via Browser login and then press back. You will find yourself in a broken interface where the displayed posts don't match the logged-in account. This does not happen with Tusky login. Seems like `finishAffinity()` does not work as expected when there is an Activity of another app (the browser) on the stack. Fix with the nuclear option (starting a new task). Also remove the explode animation, as this was broken before (finish needs to be called after startActivity for the animation to appear) and animations between tasks don't work in newer Android versions anyway.pull/5057/head^2
3 changed files with 1 additions and 30 deletions
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" > |
||||
<scale |
||||
android:duration="300" |
||||
android:fromXScale="0" |
||||
android:fromYScale="0" |
||||
android:pivotX="50%" |
||||
android:pivotY="50%" |
||||
android:toXScale="1" |
||||
android:toYScale="1" > |
||||
</scale> |
||||
</set> |
||||
Loading…
Reference in new issue