gee, maybe i should test my code before committing

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@370 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Tom Conkling
2007-12-12 02:00:58 +00:00
parent 63764b85f2
commit f8b2cb19ec
@@ -101,7 +101,7 @@ public class DisablingButton extends SimpleButton
super.upState = ((null != _disabledState && !super.enabled) ? _disabledState : _upState);
// mouseEnabled is always false when the button is disabled
super.mouseEnabled = (!super.enabled ? _mouseEnabled : false);
super.mouseEnabled = (super.enabled ? _mouseEnabled : false);
}
protected var _disabledState :DisplayObject;