diff options
author | Gijs Koot <gijs.koot@tno.nl> | 2014-03-05 15:20:30 +0100 |
---|---|---|
committer | Gijs Koot <gijs.koot@tno.nl> | 2014-03-05 15:20:30 +0100 |
commit | 71f1780b50d1a1555aa00a84eeb77bc026249cca (patch) | |
tree | 5e4a91d99f7c4407f76c95d77d31e16fbb5e4eb3 /plugin | |
parent | 714102c3f8bfacee2323e32963ee62c3d1511d19 (diff) | |
download | perl-software-in-gnu-guix-71f1780b50d1a1555aa00a84eeb77bc026249cca.tar perl-software-in-gnu-guix-71f1780b50d1a1555aa00a84eeb77bc026249cca.tar.gz |
fixed two minor bugs, a twohanded gesture may not have a direction, and if autoCenter is of, the tipPosition was in the wrong scope
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/leap/leap.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugin/leap/leap.js b/plugin/leap/leap.js index 9d5271a..48084ff 100644 --- a/plugin/leap/leap.js +++ b/plugin/leap/leap.js @@ -76,8 +76,10 @@ var b=right.criteria;if(a!==b){if(a>b||a===void 0)return 1;if(a<b||b===void 0)re pointer.style.borderRadius = size - 5 + 'px'; pointer.style.visibility = 'visible'; + tipPosition = frame.fingers[0].tipPosition; + if( config.autoCenter ) { - tipPosition = frame.fingers[0].tipPosition; + // Check whether the finger has entered the z range of the Leap Motion. Used for the autoCenter option. if( !entered ) { @@ -144,7 +146,7 @@ var b=right.criteria;if(a!==b){if(a>b||a===void 0)return 1;if(a<b||b===void 0)re // Two hand gestures else if( frame.hands.length === 2 ) { // Upward two hand swipe gesture - if( gesture.direction[1] > 0 && gesture.type === 'swipe' ) { + if( gesture.type === 'swipe' && gesture.direction[1] > 0 ) { Reveal.toggleOverview(); } |