mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix: Turn off filters by default (#2079)
This commit is contained in:
parent
4257c32bf5
commit
32f2710763
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ class PatchesSelectorViewModel(input: Params) : ViewModel(), KoinComponent {
|
|||
|
||||
val compatibleVersions = mutableStateListOf<String>()
|
||||
|
||||
var filter by mutableIntStateOf(SHOW_SUPPORTED or SHOW_UNIVERSAL or SHOW_UNSUPPORTED)
|
||||
var filter by mutableIntStateOf(0)
|
||||
private set
|
||||
|
||||
private val defaultPatchSelection = bundlesFlow.map { bundles ->
|
||||
|
|
Loading…
Reference in a new issue