summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/PropertyInspectorController.m
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/src/osx/PropertyInspectorController.m')
-rw-r--r--tikzit/src/osx/PropertyInspectorController.m7
1 files changed, 5 insertions, 2 deletions
diff --git a/tikzit/src/osx/PropertyInspectorController.m b/tikzit/src/osx/PropertyInspectorController.m
index 8254949..1411549 100644
--- a/tikzit/src/osx/PropertyInspectorController.m
+++ b/tikzit/src/osx/PropertyInspectorController.m
@@ -22,6 +22,7 @@
@synthesize stylePaletteController;
@synthesize selectedNodes, selectedEdges;
+@synthesize sourceAnchorNames, targetAnchorNames;
- (id)initWithWindowNibName:(NSString *)windowNibName {
[super initWithWindowNibName:windowNibName];
@@ -50,8 +51,10 @@
name:@"NSWindowDidBecomeMainNotification"
object:nil];
-
-
+ [self setSourceAnchorNames: [[NSMutableArray alloc] initWithArray: [@"north south west east" componentsSeparatedByString:@" "]]];
+
+ [self setTargetAnchorNames: [[NSMutableArray alloc] initWithArray:[@"north south west east" componentsSeparatedByString:@" "]]];
+
[[self window] setLevel:NSNormalWindowLevel];
[self showWindow:self];