Created
December 21, 2009 01:41
-
-
Save boucher/260709 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/AppKit/CPView.j b/AppKit/CPView.j | |
| index e67dd26..b6a2810 100644 | |
| --- a/AppKit/CPView.j | |
| +++ b/AppKit/CPView.j | |
| @@ -1670,7 +1670,7 @@ setBoundsOrigin: | |
| - (BOOL)needsDisplay | |
| { | |
| - return _dirtyRect && !_CGRectIsEmpty(_dirtyRect); | |
| + return _dirtyRect && !_CGRectIsEmpty(_dirtyRect) && ![self isHidden]; | |
| } | |
| /*! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment