.preventOrCancelDisplay -> .displaySuspended.

Rename the ASDisplayNode property to match its _ASDisplayLayer
counterpart -- `displaySuspended` is more succinct and is a more
plausible name for a Cocoa BOOL property.
This commit is contained in:
Nadine Salter
2014-12-02 18:03:30 -08:00
parent 51f3073c33
commit 1103f82a5c
7 changed files with 29 additions and 29 deletions

View File

@@ -61,7 +61,7 @@ void ASDisplayNodePerformBlockOnMainThread(void (^block)());
unsigned layerBacked:1;
unsigned displaysAsynchronously:1;
unsigned shouldRasterizeDescendants:1;
unsigned preventOrCancelDisplay:1;
unsigned displaySuspended:1;
// whether custom drawing is enabled
unsigned implementsDrawRect:1;