Commit 19791dba authored by Felix Paul Kühne's avatar Felix Paul Kühne

osx/framework: use the OS X dialog provider as interface module

parent 6d1ad866
...@@ -70,7 +70,7 @@ void __catch_exception( void * e, const char * function, const char * file, int ...@@ -70,7 +70,7 @@ void __catch_exception( void * e, const char * function, const char * file, int
NSArray *vlcParams = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"VLCParams"]; NSArray *vlcParams = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"VLCParams"];
if (!vlcParams) { if (!vlcParams) {
NSMutableArray *defaultParams = [NSMutableArray array]; NSMutableArray *defaultParams = [NSMutableArray array];
[defaultParams addObject:@"-I dummy"]; // No interface [defaultParams addObject:@"-I macosx_dialog_provider"]; // No actual interface, just dialogs and nagging
[defaultParams addObject:@"--no-video-title-show"]; // Don't show the title on overlay when starting to play [defaultParams addObject:@"--no-video-title-show"]; // Don't show the title on overlay when starting to play
[defaultParams addObject:@"--no-sout-keep"]; [defaultParams addObject:@"--no-sout-keep"];
[defaultParams addObject:@"--ignore-config"]; // Don't read and write VLC config files [defaultParams addObject:@"--ignore-config"]; // Don't read and write VLC config files
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment