X-Git-Url: http://git.ithinksw.org/MenuTunes.git/blobdiff_plain/b62c6c9f99a0a3529e5a914b112e0d615b10e25c..fdfb5bcabe31312494856c29306ff79e2ece5fcc:/MainController.m diff --git a/MainController.m b/MainController.m index 2400f9e..0f86024 100755 --- a/MainController.m +++ b/MainController.m @@ -498,7 +498,12 @@ static MainController *sharedController; } else { ITDebugLog(@"Launching player."); NS_DURING - if (![[NSWorkspace sharedWorkspace] launchApplication:[[self currentRemote] playerFullName]]) { + NSString *path; + if ( (path = [df stringForKey:@"CustomPlayerPath"]) ) { + } else { + path = [[self currentRemote] playerFullName]; + } + if (![[NSWorkspace sharedWorkspace] launchApplication:path]) { ITDebugLog(@"Error Launching Player"); } NS_HANDLER