Skip to content
Snippets Groups Projects
Commit d2a556ec authored by Nicolas Pomepuy's avatar Nicolas Pomepuy
Browse files

Prevent showing the TV interface security dialog if we already know the device is compatible

parent 8aa59924
No related branches found
No related tags found
1 merge request!1298Fix overscan incorrectly applied on SecondaryActivity
Pipeline #200660 passed with stage
in 4 minutes and 18 seconds
......@@ -106,7 +106,7 @@ class PreferencesUi : BasePreferenceFragment(), SharedPreferences.OnSharedPrefer
if (preference.key == null) return false
when (preference.key) {
PREF_TV_UI -> {
if (!tvUiPref.isChecked) {
if (!tvUiPref.isChecked && Settings.device.isTv) {
tvUiPref.isChecked = true
val dialog = FeatureTouchOnlyWarningDialog.newInstance {
tvUiPref.isChecked = false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment