[HAX]sm8150-common: correct string name for V gesture

This commit is contained in:
Omkar Chandorkar 2020-10-13 22:39:03 +05:30 committed by Omkar Chandorkar
parent d597d3fc54
commit ea7e5816d1
No known key found for this signature in database
GPG Key ID: 95A33FD984777F70
2 changed files with 3 additions and 3 deletions

View File

@ -45,8 +45,8 @@
<string name="touchscreen_gesture_one_finger_left_swipe_title">Swipe left with one finger</string> <string name="touchscreen_gesture_one_finger_left_swipe_title">Swipe left with one finger</string>
<string name="touchscreen_gesture_one_finger_right_swipe_title">Swipe right with one finger</string> <string name="touchscreen_gesture_one_finger_right_swipe_title">Swipe right with one finger</string>
<string name="touchscreen_gesture_single_tap_title">Single tap</string> <string name="touchscreen_gesture_single_tap_title">Single tap</string>
<string name="touchscreen_gesture_up_arrow_title">Draw a \"Λ\"</string> <string name="touchscreen_gesture_up_arrow_title">Draw a \"V\"</string>
<string name="touchscreen_gesture_down_arrow_title">Draw a \"V\"</string> <string name="touchscreen_gesture_down_arrow_title">Draw a \"Λ\"</string>
<string name="touchscreen_gesture_left_arrow_title">Draw a \"&lt;\"</string> <string name="touchscreen_gesture_left_arrow_title">Draw a \"&lt;\"</string>
<string name="touchscreen_gesture_right_arrow_title">Draw a \"&gt;\"</string> <string name="touchscreen_gesture_right_arrow_title">Draw a \"&gt;\"</string>
<string name="touchscreen_gesture_letter_c_title">Draw the letter \"C\"</string> <string name="touchscreen_gesture_letter_c_title">Draw the letter \"C\"</string>

View File

@ -28,7 +28,7 @@ namespace implementation {
const std::map<int32_t, TouchscreenGesture::GestureInfo> TouchscreenGesture::kGestureInfoMap = { const std::map<int32_t, TouchscreenGesture::GestureInfo> TouchscreenGesture::kGestureInfoMap = {
{0, {251, "Two fingers down swipe", "/proc/touchpanel/double_swipe_enable"}}, {0, {251, "Two fingers down swipe", "/proc/touchpanel/double_swipe_enable"}},
{1, {252, "Down arrow", "/proc/touchpanel/down_arrow_enable"}}, {1, {252, "Up arrow", "/proc/touchpanel/down_arrow_enable"}},
{2, {253, "Left arrow", "/proc/touchpanel/left_arrow_enable"}}, {2, {253, "Left arrow", "/proc/touchpanel/left_arrow_enable"}},
{3, {254, "Right arrow", "/proc/touchpanel/right_arrow_enable"}}, {3, {254, "Right arrow", "/proc/touchpanel/right_arrow_enable"}},
{4, {247, "Letter M", "/proc/touchpanel/letter_m_enable"}}, {4, {247, "Letter M", "/proc/touchpanel/letter_m_enable"}},