Skip to content
This repository has been archived by the owner on Jul 4, 2024. It is now read-only.

Commit

Permalink
make disabling view invisible by default
Browse files Browse the repository at this point in the history
  • Loading branch information
roiacult committed Jun 25, 2020
1 parent af50636 commit 2ceb123
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class BackdropLayout @JvmOverloads constructor(context: Context, attribute : Att
peeckHeight = typedArray.getDimension(R.styleable.BackdropLayout_peekHeight,0F)
toolbarId = typedArray.getResourceId(R.styleable.BackdropLayout_toolbarId,0)
menuIcon = typedArray.getResourceId(R.styleable.BackdropLayout_menuDrawable,R.drawable.menu)
disableWhenOpened = typedArray.getBoolean(R.styleable.BackdropLayout_disable_when_open , true)
disableWhenOpened = typedArray.getBoolean(R.styleable.BackdropLayout_disable_when_open , false)
closeIcon = typedArray.getResourceId(R.styleable.BackdropLayout_closeDrawable,R.drawable.close)
duration = typedArray.getInteger(R.styleable.BackdropLayout_animationDuration, DEFAULT_DURATION)
frontHeaderRadius = typedArray.getDimensionPixelSize(R.styleable.BackdropLayout_front_header_radius,0)
Expand Down

0 comments on commit 2ceb123

Please sign in to comment.