mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-22 05:38:55 +00:00
Improve facial hair display
This commit is contained in:
parent
a9e09db6bd
commit
b1d5cccb77
1 changed files with 5 additions and 1 deletions
|
|
@ -28,6 +28,10 @@ class PurchaseDialogCustomizationSetContent(context: Context) : PurchaseDialogCo
|
|||
imageView.layoutParams = FlexboxLayout.LayoutParams(76.dpToPx(context), 76.dpToPx(context))
|
||||
binding.imageViewWrapper.addView(imageView)
|
||||
}
|
||||
binding.notesTextView.text = item.notes
|
||||
if (item.path?.contains("facialHair") == true) {
|
||||
binding.notesTextView.text = context.getString(R.string.facial_hair_notes)
|
||||
} else {
|
||||
binding.notesTextView.text = item.notes
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue