Skip to content

Commit

Permalink
Fix Calendar typo, & fix recycler be recycling
Browse files Browse the repository at this point in the history
  • Loading branch information
brahmkshatriya committed Oct 21, 2022
1 parent 8f10cf2 commit e7fa45d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/ani/saikou/media/CalendarActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class CalendarActivity : AppCompatActivity() {
binding.root.updateLayoutParams<ViewGroup.MarginLayoutParams> { topMargin += statusBarHeight }
binding.studioRecycler.updatePadding(bottom = 64f.px + navBarHeight)
binding.studioTitle.isSelected = true
binding.studioTitle.setText(R.string.release_calender)
binding.studioTitle.setText(R.string.release_calendar)

binding.studioClose.setOnClickListener {
onBackPressed()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ class SearchFilterBottomDialog(

override fun onBindViewHolder(holder: SearchChipViewHolder, position: Int) {
val title = list[position]
holder.setIsRecyclable(false)
holder.binding.root.apply {
text = title
isCheckable = true
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/item_anime_page.xml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
android:layout_height="wrap_content"
android:layout_gravity="center"
android:fontFamily="@font/poppins_bold"
android:text="@string/release_calender"
android:text="@string/release_calendar"
android:textAllCaps="true"
android:textColor="@color/bg_white"
android:textSize="16sp" />
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,6 @@
<string name="next_season">Next Season</string>
<string name="previous_season">Previous Season</string>
<string name="include_media_in_list">Include List</string>
<string name="release_calender">Calender</string>
<string name="release_calendar">Calendar</string>

</resources>

0 comments on commit e7fa45d

Please sign in to comment.