Browse Source

macosx: fix subtitles drag and drop (close #8477)

pull/7/head
Felix Paul Kühne 13 years ago
parent
commit
fcf5b3da68
  1. 2
      modules/gui/macosx/CoreInteraction.m

2
modules/gui/macosx/CoreInteraction.m

@ -566,7 +566,7 @@ static VLCCoreInteraction *_o_sharedInstance = nil;
BOOL b_returned = NO;
if (count == 1 && p_input) {
b_returned = input_AddSubtitle(p_input, vlc_path2uri([[o_values objectAtIndex:0] UTF8String], NULL), true);
b_returned = input_AddSubtitle(p_input, [[o_values objectAtIndex:0] UTF8String], true);
vlc_object_release(p_input);
if (!b_returned)
return YES;

Loading…
Cancel
Save