From f8b2cb19ecb387219ef18c810f3b4be287577a69 Mon Sep 17 00:00:00 2001 From: Tom Conkling Date: Wed, 12 Dec 2007 02:00:58 +0000 Subject: [PATCH] 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 --- src/as/com/threerings/flash/DisablingButton.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/as/com/threerings/flash/DisablingButton.as b/src/as/com/threerings/flash/DisablingButton.as index 0f900929..f8ac6d4d 100644 --- a/src/as/com/threerings/flash/DisablingButton.as +++ b/src/as/com/threerings/flash/DisablingButton.as @@ -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;