Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable overscroll animation on main plugins screen #18498

Merged
merged 2 commits into from
May 24, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Disable overscroll animation on main plugins screen
This is done because it seems that the animation may lead to the
expectation that swiping down will refresh the contents of this screen.
In fact, this screen does not have a multi-list refresh implemented, and
each individual plugins list can be refreshed by tapping into the detail
view.
  • Loading branch information
mkevins committed May 24, 2023
commit 92c528acb52339199435fce4dedbdbe355300d91
3 changes: 2 additions & 1 deletion WordPress/src/main/res/layout/plugin_browser_activity.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:overScrollMode="never">

<LinearLayout
android:layout_width="match_parent"
Expand Down