summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/NodeLayer.h
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/src/osx/NodeLayer.h')
-rw-r--r--tikzit/src/osx/NodeLayer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tikzit/src/osx/NodeLayer.h b/tikzit/src/osx/NodeLayer.h
index d2a943b..dbcdac5 100644
--- a/tikzit/src/osx/NodeLayer.h
+++ b/tikzit/src/osx/NodeLayer.h
@@ -30,7 +30,7 @@
#import "NodeSelectionLayer.h"
@interface NodeLayer : CALayer {
- Node *__weak node;
+ Node *node;
Shape *shape;
CGMutablePathRef path;
float textwidth;
@@ -42,7 +42,7 @@
BOOL dirty; // need to rebuild CGBezierPath of the shape
}
-@property (weak) Node *node;
+@property (strong) Node *node;
@property (assign) NSPoint center;
@property (assign) BOOL rescale;
@property (strong) NodeSelectionLayer *selection;