1
0
mirror of https://github.com/AllanWang/Frost-for-Facebook.git synced 2024-09-19 23:21:34 +02:00

Remove autoplay settings

This commit is contained in:
Allan Wang 2020-01-20 16:52:10 -08:00
parent 9b958725a7
commit da2405f42d
No known key found for this signature in database
GPG Key ID: C93E3F9C679D7A56

View File

@ -19,9 +19,7 @@ package com.pitchedapps.frost.settings
import ca.allanwang.kau.kpref.activity.KPrefAdapterBuilder
import com.pitchedapps.frost.R
import com.pitchedapps.frost.activities.SettingsActivity
import com.pitchedapps.frost.facebook.FB_URL_BASE
import com.pitchedapps.frost.utils.Prefs
import com.pitchedapps.frost.utils.launchWebOverlay
/**
* Created by Allan Wang on 2017-06-30.
@ -72,12 +70,13 @@ fun SettingsActivity.getBehaviourPrefs(): KPrefAdapterBuilder.() -> Unit = {
descRes = R.string.enable_pip_desc
}
plainText(R.string.autoplay_settings) {
descRes = R.string.autoplay_settings_desc
onClick = {
launchWebOverlay("${FB_URL_BASE}settings/videos/")
}
}
// Not available for desktop user agent for now
// plainText(R.string.autoplay_settings) {
// descRes = R.string.autoplay_settings_desc
// onClick = {
// launchWebOverlay("${FB_URL_BASE}settings/videos/")
// }
// }
checkbox(R.string.exit_confirmation, Prefs::exitConfirmation, { Prefs.exitConfirmation = it }) {
descRes = R.string.exit_confirmation_desc