Fixed bug where file drawer was not getting the correct root from defaults.

CQTexperiment
vspader 2006-09-30 13:25:45 +00:00
parent 38ecd2f47f
commit b021077fa6
1 changed files with 12 additions and 1 deletions

View File

@ -2,6 +2,17 @@
@implementation AppController
- (id)init
{
self = [super init];
if (self)
{
[self initDefaults];
}
return self;
}
- (IBAction)openFiles:(id)sender
{
NSOpenPanel *p;
@ -64,7 +75,7 @@
- (void)awakeFromNib
{
[self initDefaults];
// [self initDefaults];
// DBLog(@"AWAKe");
[playButton setToolTip:NSLocalizedString(@"PlayButtonTooltip", @"")];