openGestureEdgeSize docs are copied from minimumDragDistance docs and don't reflect what openGestureEdgeSize actually does:
/**
* The minimum physical distance (in inches) that a touch must move
* before a drag gesture begins.
*
* <p>In the following example, the minimum drag distance is customized:</p>
*
* <listing version="3.0">
* drawers.minimumDragDistance = 0.1;</listing>
*
* @default 0.04
*/
public function get minimumDragDistance():Number
{
return this._minimumDragDistance;
}
/**
* The minimum physical distance (in inches) that a touch must move
* before a drag gesture begins.
*
* <p>In the following example, the open gesture edge size customized:</p>
*
* <listing version="3.0">
* drawers.openGestureEdgeSize = 0.25;</listing>
*
* @default 0.1
*/
public function get openGestureEdgeSize():Number
{
return this._openGestureEdgeSize;
}
openGestureEdgeSize docs are copied from minimumDragDistance docs and don't reflect what openGestureEdgeSize actually does: