Commit b6e4b670 authored by techird's avatar techird

change to 3px

parent 6a5d1086
...@@ -39,7 +39,7 @@ var ViewDragger = kity.createClass( "ViewDragger", { ...@@ -39,7 +39,7 @@ var ViewDragger = kity.createClass( "ViewDragger", {
.on('normal.mousemove normal.touchmove', function (e) { .on('normal.mousemove normal.touchmove', function (e) {
if (!isRootDrag) return; if (!isRootDrag) return;
var offset = kity.Vector.fromPoints( lastPosition, e.getPosition()); var offset = kity.Vector.fromPoints( lastPosition, e.getPosition());
if (offset.length() > 10) this.setStatus( 'hand' ); if (offset.length() > 3) this.setStatus( 'hand' );
}) })
.on( 'hand.beforemousedown hand.beforetouchend', function ( e ) { .on( 'hand.beforemousedown hand.beforetouchend', function ( e ) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment