Fixed bug where file drawer was not getting the correct root from defaults.
parent
38ecd2f47f
commit
b021077fa6
|
@ -2,6 +2,17 @@
|
||||||
|
|
||||||
@implementation AppController
|
@implementation AppController
|
||||||
|
|
||||||
|
- (id)init
|
||||||
|
{
|
||||||
|
self = [super init];
|
||||||
|
if (self)
|
||||||
|
{
|
||||||
|
[self initDefaults];
|
||||||
|
}
|
||||||
|
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
- (IBAction)openFiles:(id)sender
|
- (IBAction)openFiles:(id)sender
|
||||||
{
|
{
|
||||||
NSOpenPanel *p;
|
NSOpenPanel *p;
|
||||||
|
@ -64,7 +75,7 @@
|
||||||
|
|
||||||
- (void)awakeFromNib
|
- (void)awakeFromNib
|
||||||
{
|
{
|
||||||
[self initDefaults];
|
// [self initDefaults];
|
||||||
|
|
||||||
// DBLog(@"AWAKe");
|
// DBLog(@"AWAKe");
|
||||||
[playButton setToolTip:NSLocalizedString(@"PlayButtonTooltip", @"")];
|
[playButton setToolTip:NSLocalizedString(@"PlayButtonTooltip", @"")];
|
||||||
|
|
Loading…
Reference in New Issue