Skip to content

Commit

Permalink
Fix for indeterminate check in CPProgressIndicator.
Browse files Browse the repository at this point in the history
[cappuccino#140 state:resolved]

Reviewed by me.
  • Loading branch information
Patrick Crosby authored and Francisco Ryan Tolmasky I committed Nov 14, 2008
1 parent e1d57aa commit 311939e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AppKit/CPProgressIndicator.j
Expand Up @@ -331,7 +331,7 @@ var CPProgressIndicatorSpinningStyleColors = nil,
*/
- (void)setIndeterminate:(BOOL)isIndeterminate
{
if (_indeterminate == isIndeterminate)
if (_isIndeterminate == isIndeterminate)
return;

_isIndeterminate = isIndeterminate;
Expand Down

0 comments on commit 311939e

Please sign in to comment.