OmniGears: temp change gesture info string
Change-Id: I1d6b337400b90904e3560e760fc77a2cc6cc355c
diff --git a/res/values/custom_strings.xml b/res/values/custom_strings.xml
index 12f4152..10cc082 100644
--- a/res/values/custom_strings.xml
+++ b/res/values/custom_strings.xml
@@ -796,6 +796,7 @@
<string name="gesture_settings_title">Gestures</string>
<string name="gesture_settings_info">Navigation bar must be disabled!\n\nAvailable gestures:\n\nBack\n- Swipe up on left or right side\n\nHome\n- Swipe up center\n\nRecent apps\n- Swipe up center and hold\n\nLong press home\n- Short swipe up and hold in the center</string>
+ <string name="gesture_settings_info_new">Navigation bar must be disabled!\n\nAvailable gestures:\n\nBack\n- Swipe up on left or right side\n\nHome\n- Swipe up center\n\nRecent apps\n- Swipe up center and hold\n\nSwitch to last app\n- Short swipe up and hold in the center</string>
<string name="use_bottom_gesture_title">Navigation gestures</string>
<string name="use_bottom_gesture_summary">Use bottom swipe up gestures for navigation</string>
diff --git a/src/org/omnirom/omnigears/GestureSettings.java b/src/org/omnirom/omnigears/GestureSettings.java
index 23bee74..d14f32b 100644
--- a/src/org/omnirom/omnigears/GestureSettings.java
+++ b/src/org/omnirom/omnigears/GestureSettings.java
@@ -46,7 +46,7 @@
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.gesture_settings);
- mFooterPreferenceMixin.createFooterPreference().setTitle(R.string.gesture_settings_info);
+ mFooterPreferenceMixin.createFooterPreference().setTitle(R.string.gesture_settings_info_new);
}
@Override