1//
2//  PXToolMatrix.m
3//  Pixen-XCode
4//
5//  Created by Ian Henderson on Sat Mar 20 2004.
6//  Copyright (c) 2004 Open Sword Group. All rights reserved.
7//
8
9#import "PXToolMatrix.h"
10#import "PXToolPropertiesController.h"
11
12
13@implementation PXToolMatrix
14
15- (void)awakeFromNib
16{
17	[self setDoubleAction:@selector(toolDoubleClicked:)];
18}
19
20
21/*- (void)mouseDown:event
22{
23    if ([event clickCount] == 2) {
24		[self target]
25		[switcher orderFrontPropertiesPanel];
26    }
27    [super mouseDown:event];
28}*/
29
30
31@end
32