Commit 5ceb0f29 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: forgot a corner case in the previous commit

parent 8be68853
......@@ -1534,6 +1534,10 @@ static VLCMain *_o_sharedMainInstance = nil;
{
NSString *o_temp;
vlc_object_yield( p_input );
if( input_item_GetNowPlaying ( p_playlist->status.p_item->p_input ) )
o_temp = [NSString stringWithUTF8String:
input_item_GetNowPlaying ( p_playlist->status.p_item->p_input )];
else
o_temp = [NSString stringWithUTF8String:
p_playlist->status.p_item->p_input->psz_name];
[self setScrollField: o_temp stopAfter:-1];
......
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