cocos2d-objc
cocos2d-objc copied to clipboard
zoomWhenHighlighted in CCButton doesn't cancel actions correctly
stateChanged the code calls stopAllActions on the _label, but fails to call stopAllActions on _background. Adding
[_background stopAllActions];
at line 324 fixes the problem.
I would suggest making a pull request.