Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions starling/src/starling/display/Button.as
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ package starling.display
*/
public class Button extends DisplayObjectContainer
{
private static const MAX_DRAG_DIST:Number = 50;
public var MAX_DRAG_DIST:Number = 50;

private var mUpState:Texture;
private var mDownState:Texture;
Expand Down Expand Up @@ -436,4 +436,4 @@ package starling.display
public override function get useHandCursor():Boolean { return mUseHandCursor; }
public override function set useHandCursor(value:Boolean):void { mUseHandCursor = value; }
}
}
}