summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Martins <bgcngm@gmail.com>2022-02-14 22:23:35 +0000
committerBruno Martins <bgcngm@gmail.com>2022-02-15 01:18:08 +0100
commit279af4b92112172de96e315b5c0e52b367baa52b (patch)
treed976392469b6fd7e0f2b956274779ce2a0225991
parenta6270e2d7c40c02d634db39f1e4632e05fb303a0 (diff)
pro1: devicesettings: Place Touchscreen pref under Display settings
This never made sense to be a loose preference under Settings / System, not even to mention that it lacked an icon to align with the rest of other preferences in that category. It fits better under "Other display controls" category, in Display settings, so move it there. Change-Id: I0cbd4c7d0677e7700b25f394128831c41432c283
-rw-r--r--devicesettings/AndroidManifest.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/devicesettings/AndroidManifest.xml b/devicesettings/AndroidManifest.xml
index dce27cc..aff3056 100644
--- a/devicesettings/AndroidManifest.xml
+++ b/devicesettings/AndroidManifest.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
- Copyright (C) 2018-2021 The LineageOS Project
+ Copyright (C) 2018-2022 The LineageOS Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -81,10 +81,13 @@
</intent-filter>
<meta-data
android:name="com.android.settings.category"
- android:value="com.android.settings.category.ia.system" />
+ android:value="com.android.settings.category.ia.display" />
<meta-data
android:name="com.android.settings.summary"
android:resource="@string/touchscreen_settings_summary" />
+ <meta-data
+ android:name="com.android.settings.order"
+ android:value="256" />
</activity>
</application>
</manifest>