lint
This commit is contained in:
parent
193814c739
commit
4ea3420cb5
|
@ -30,7 +30,7 @@ interface DetermineBasalAdapterInterface {
|
|||
uamAllowed: Boolean = false,
|
||||
advancedFiltering: Boolean = false,
|
||||
isSaveCgmSource: Boolean = false
|
||||
) {}
|
||||
)
|
||||
|
||||
operator fun invoke(): APSResult?
|
||||
}
|
|
@ -136,7 +136,7 @@ open class NumberPicker(context: Context, attrs: AttributeSet? = null) : LinearL
|
|||
}
|
||||
|
||||
fun updateA11yDescription() {
|
||||
val description = if (mCustomContentDescription != null) mCustomContentDescription else ""
|
||||
val description = mCustomContentDescription ?: ""
|
||||
binding.minusButton.contentDescription = context.getString(R.string.a11y_min_button_description, description, formatter?.format(this.step))
|
||||
binding.plusButton.contentDescription = context.getString(R.string.a11y_plus_button_description, description, formatter?.format(this.step))
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue