Skip to content

Commit

Permalink
Remove protected from paddingStartItem setter
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-stoneuk authored Mar 26, 2020
1 parent 1ec4f8c commit 12e44fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/src/main/java/cafe/adriel/krumbsview/KrumbsView.kt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ open class KrumbsView(context: Context, attrs: AttributeSet? = null) : LinearLay
protected val items = ArrayDeque<Krumb>()

protected var _paddingStartItem: Int = 0
protected var paddingStartItem: Int
var paddingStartItem: Int
get () {
return _paddingStartItem
}
Expand Down Expand Up @@ -401,4 +401,4 @@ open class KrumbsView(context: Context, attrs: AttributeSet? = null) : LinearLay
outAnimation?.duration = duration.duration
}
}
}
}

0 comments on commit 12e44fb

Please sign in to comment.