mirror of
https://github.com/mihonapp/mihon.git
synced 2025-06-25 10:37:51 +02:00
Fix unexpected skips in strong skipping mode (#940)
This commit is contained in:
@ -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 {
|
||||
|
@ -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())
|
||||
|
Reference in New Issue
Block a user