fixed gesture names; a lot of gestures were erronously named corner rather than edge

This causes us to have both a 'bottomleftcorner' and 'leftbottomcorner',
the latter is now 'leftbottomedge' and is interpreted as 'a left swipe
along the bottom edge' while 'bottomleftcorner' is 'diagonal swipe from
the bottom left corner'.

Signed-off-by: Anjandev Momi <anjan@momi.ca>
This commit is contained in:
Maarten van Gompel 2021-09-10 23:07:44 +02:00 committed by Anjandev Momi
parent 35b312c0b8
commit c831d26773
2 changed files with 40 additions and 40 deletions

View file

@ -31,24 +31,24 @@ lisgd "$@" ${orientation:+-o $orientation} \
-g '1,DLUR,BL,*,sxmo_inputhandler.sh bottomleftcorner' \
-g '1,ULDR,TL,*,sxmo_inputhandler.sh topleftcorner' \
-g '1,URDL,TR,*,sxmo_inputhandler.sh toprightcorner' \
-g '1,LR,B,L,sxmo_inputhandler.sh rightbottomcorner' \
-g '1,RL,B,L,sxmo_inputhandler.sh leftbottomcorner' \
-g '1,LR,L,*,sxmo_inputhandler.sh rightleftcorner' \
-g '1,RL,R,*,sxmo_inputhandler.sh leftrightcorner' \
-g '1,DU,L,*,P,sxmo_inputhandler.sh upleftcorner' \
-g '1,UD,L,*,P,sxmo_inputhandler.sh downleftcorner' \
-g '1,LR,T,*,P,sxmo_inputhandler.sh righttopcorner' \
-g '1,RL,T,*,P,sxmo_inputhandler.sh lefttopcorner' \
-g "1,DU,B,*,sxmo_inputhandler.sh upbottomcorner" \
-g "1,UD,B,*,sxmo_inputhandler.sh downbottomcorner" \
-g "1,UD,T,*,sxmo_inputhandler.sh downtopcorner" \
-g "1,DU,T,*,sxmo_inputhandler.sh uptopcorner" \
-g "2,UD,T,*,sxmo_inputhandler.sh twodowntopcorner" \
-g "2,UD,B,*,sxmo_inputhandler.sh twodownbottomcorner" \
-g '1,DU,R,*,P,sxmo_inputhandler.sh uprightcorner' \
-g '1,UD,R,*,P,sxmo_inputhandler.sh downrightcorner' \
-g '1,LR,R,S,sxmo_inputhandler.sh rightrightcorner_short' \
-g '1,RL,L,S,sxmo_inputhandler.sh leftrightcorner_short' \
-g '1,LR,B,L,sxmo_inputhandler.sh rightbottomedge' \
-g '1,RL,B,L,sxmo_inputhandler.sh leftbottomedge' \
-g '1,LR,L,*,sxmo_inputhandler.sh rightleftedge' \
-g '1,RL,R,*,sxmo_inputhandler.sh leftrightedge' \
-g '1,DU,L,*,P,sxmo_inputhandler.sh upleftedge' \
-g '1,UD,L,*,P,sxmo_inputhandler.sh downleftedge' \
-g '1,LR,T,*,P,sxmo_inputhandler.sh righttopedge' \
-g '1,RL,T,*,P,sxmo_inputhandler.sh lefttopedge' \
-g "1,DU,B,*,sxmo_inputhandler.sh upbottomedge" \
-g "1,UD,B,*,sxmo_inputhandler.sh downbottomedge" \
-g "1,UD,T,*,sxmo_inputhandler.sh downtopedge" \
-g "1,DU,T,*,sxmo_inputhandler.sh uptopedge" \
-g "2,UD,T,*,sxmo_inputhandler.sh twodowntopedge" \
-g "2,UD,B,*,sxmo_inputhandler.sh twodownbottomedge" \
-g '1,DU,R,*,P,sxmo_inputhandler.sh uprightedge' \
-g '1,UD,R,*,P,sxmo_inputhandler.sh downrightedge' \
-g '1,LR,R,S,sxmo_inputhandler.sh rightrightedge_short' \
-g '1,RL,L,S,sxmo_inputhandler.sh leftrightedge_short' \
-g '1,RL,*,L,sxmo_inputhandler.sh longoneleft' \
-g '1,LR,*,L,sxmo_inputhandler.sh longoneright' \
-g '1,DU,*,L,sxmo_inputhandler.sh longoneup' \