Fixed bug where file drawer was not getting the correct root from defaults.
parent
38ecd2f47f
commit
b021077fa6
|
@ -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", @"")];
|
||||
|
|
Loading…
Reference in New Issue