Skip to content

Commit

Permalink
fix track status button not being cilckable
Browse files Browse the repository at this point in the history
  • Loading branch information
az4521 committed Apr 10, 2024
1 parent 9451270 commit 38089fc
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,6 @@ buildscript {

repositories {
mavenCentral()
jcenter()
}

// See https://kotlinlang.org/docs/reference/experimental.html#experimental-status-of-experimental-api-markers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class TrackHolder(view: View, adapter: TrackAdapter) : BaseViewHolder(view) {
listener.onTitleLongClick(bindingAdapterPosition)
true
}
binding.trackStartDate.setOnClickListener { listener.onStatusClick(bindingAdapterPosition) }
binding.trackStatus.setOnClickListener { listener.onStatusClick(bindingAdapterPosition) }
binding.trackChapters.setOnClickListener { listener.onChaptersClick(bindingAdapterPosition) }
binding.trackScore.setOnClickListener { listener.onScoreClick(bindingAdapterPosition) }
binding.trackStartDate.setOnClickListener { listener.onStartDateClick(bindingAdapterPosition) }
Expand Down
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ plugins {
allprojects {
repositories {
mavenCentral()
jcenter()
google()
maven { setUrl("https://www.jitpack.io") }
maven { setUrl("https://oss.sonatype.org/content/repositories/snapshots/") }
Expand Down

0 comments on commit 38089fc

Please sign in to comment.