Commit 4b179204 authored by Thomas's avatar Thomas
Browse files

Fix issue #685 - Bouncing Timeline on refresh

parent e7c3f04f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -489,10 +489,9 @@ public class FragmentMastodonTimeline extends Fragment implements StatusAdapter.
            flagLoading = true;
        }
        if (direction == DIRECTION.SCROLL_TOP) {
            binding.recyclerView.scrollToPosition(0);
            new Handler().postDelayed(() -> binding.recyclerView.scrollToPosition(0), 200);
        }


    }

    /**