[HAX]sm8150-common: correct string name for V gesture
This commit is contained in:
parent
d597d3fc54
commit
ea7e5816d1
|
@ -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 \"<\"</string>
|
<string name="touchscreen_gesture_left_arrow_title">Draw a \"<\"</string>
|
||||||
<string name="touchscreen_gesture_right_arrow_title">Draw a \">\"</string>
|
<string name="touchscreen_gesture_right_arrow_title">Draw a \">\"</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>
|
||||||
|
|
|
@ -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"}},
|
||||||
|
|
Loading…
Reference in New Issue