add touch option: four finger tap
This commit is contained in:
@@ -679,4 +679,8 @@ export const I18N = {
|
|||||||
zh: `三指轻触`,
|
zh: `三指轻触`,
|
||||||
en: `Three finger tap`,
|
en: `Three finger tap`,
|
||||||
},
|
},
|
||||||
|
touch_tap_4: {
|
||||||
|
zh: `四指轻触`,
|
||||||
|
en: `Four finger tap`,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -181,7 +181,7 @@ export default function Settings() {
|
|||||||
label={i18n("touch_translate_shortcut")}
|
label={i18n("touch_translate_shortcut")}
|
||||||
onChange={handleChange}
|
onChange={handleChange}
|
||||||
>
|
>
|
||||||
{[0, 2, 3].map((item) => (
|
{[0, 2, 3, 4].map((item) => (
|
||||||
<MenuItem key={item} value={item}>
|
<MenuItem key={item} value={item}>
|
||||||
{i18n(`touch_tap_${item}`)}
|
{i18n(`touch_tap_${item}`)}
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
|
|||||||
Reference in New Issue
Block a user