mirror of
https://github.com/aniyomiorg/aniyomi.git
synced 2024-11-28 00:37:58 +03:00
Use existing paddings when allocating space for source RecyclerView for FAB (fixes #2917)
This commit is contained in:
parent
b6f1c516e2
commit
badddcf0de
1 changed files with 3 additions and 3 deletions
|
@ -202,9 +202,9 @@ open class BrowseSourceController(bundle: Bundle) :
|
|||
if (filterSheet != null) {
|
||||
// Add bottom padding if filter FAB is visible
|
||||
recycler.setPadding(
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
recycler.paddingLeft,
|
||||
recycler.paddingTop,
|
||||
recycler.paddingRight,
|
||||
view.resources.getDimensionPixelOffset(R.dimen.fab_list_padding)
|
||||
)
|
||||
recycler.clipToPadding = false
|
||||
|
|
Loading…
Reference in a new issue