mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-30 22:07:57 +01:00 
			
		
		
		
	Fix Incognito Mode toggle not updating after disabled via notification
This commit is contained in:
		| @@ -29,6 +29,8 @@ import eu.kanade.tachiyomi.util.preference.switchPreference | ||||
| import eu.kanade.tachiyomi.util.preference.titleRes | ||||
| import eu.kanade.tachiyomi.util.system.getResourceColor | ||||
| import eu.kanade.tachiyomi.util.system.openInBrowser | ||||
| import kotlinx.coroutines.flow.launchIn | ||||
| import kotlinx.coroutines.flow.onEach | ||||
| import rx.Observable | ||||
| import rx.Subscription | ||||
| import rx.android.schedulers.AndroidSchedulers | ||||
| @@ -70,6 +72,10 @@ class MoreController : | ||||
|             iconRes = R.drawable.ic_glasses_24dp | ||||
|             iconTint = tintColor | ||||
|             defaultValue = false | ||||
|  | ||||
|             preferences.incognitoMode().asFlow() | ||||
|                 .onEach { isChecked = it } | ||||
|                 .launchIn(viewScope) | ||||
|         } | ||||
|  | ||||
|         preferenceCategory { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user