Fix ktlint

This commit is contained in:
Lucas Lima 2020-11-06 23:50:14 -03:00
parent 6504752768
commit 380157f6a0

View file

@ -431,7 +431,9 @@ class FixedGridLayoutManager : RecyclerView.LayoutManager() {
*/
measureChildWithMargins(view, 0, 0)
layoutDecorated(
view, leftOffset, topOffset,
view,
leftOffset,
topOffset,
leftOffset + mDecoratedChildWidth,
topOffset + mDecoratedChildHeight
)
@ -821,7 +823,9 @@ class FixedGridLayoutManager : RecyclerView.LayoutManager() {
measureChildWithMargins(child, 0, 0)
layoutDecorated(
child, layoutLeft, layoutTop,
child,
layoutLeft,
layoutTop,
layoutLeft + mDecoratedChildWidth,
layoutTop + mDecoratedChildHeight
)