Skip to content

Commit

Permalink
Fix unexpected skips in strong skipping mode (#940)
Browse files Browse the repository at this point in the history
  • Loading branch information
FooIbar authored Jun 22, 2024
1 parent 4ed2062 commit 0ce1cf2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions gradle/compose.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ bom = { group = "dev.chrisbanes.compose", name = "compose-bom", version.ref = "c
foundation = { module = "androidx.compose.foundation:foundation" }
animation = { module = "androidx.compose.animation:animation" }
animation-graphics = { module = "androidx.compose.animation:animation-graphics" }
runtime = { module = "androidx.compose.runtime:runtime" }
ui-tooling = { module = "androidx.compose.ui:ui-tooling" }
ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview" }
ui-util = { module = "androidx.compose.ui:ui-util" }
Expand Down
3 changes: 3 additions & 0 deletions source-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ kotlin {
api(libs.injekt.core)
api(libs.rxjava)
api(libs.jsoup)

implementation(project.dependencies.platform(compose.bom))
implementation(compose.runtime)
}
}
val androidMain by getting {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package eu.kanade.tachiyomi.source.model

import androidx.compose.runtime.Stable

@Stable
data class FilterList(val list: List<Filter<*>>) : List<Filter<*>> by list {

constructor(vararg fs: Filter<*>) : this(if (fs.isNotEmpty()) fs.asList() else emptyList())
Expand Down

0 comments on commit 0ce1cf2

Please sign in to comment.