Commit fe273e3d authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: fix addition of empty folders to the playlist. needs some beautification later on.

parent d7119bf8
......@@ -1458,23 +1458,9 @@
playlist_t * p_playlist = pl_Hold( VLCIntf );
vlc_thread_set_priority( p_playlist, VLC_THREAD_PRIORITY_LOW );
int ret_v;
char *psz_name = NULL;
ret_v = intf_UserStringInput( p_playlist, _("New Node"),
_("Please enter a name for the new node."), &psz_name );
PL_LOCK;
if( ret_v != DIALOG_CANCELLED && psz_name )
{
playlist_NodeCreate( p_playlist, psz_name,
p_playlist->p_local_category, 0, NULL );
}
else if(! config_GetInt( p_playlist, "interact" ) )
{
/* in case that the interaction is disabled, just give it a bogus name */
playlist_NodeCreate( p_playlist, _("Empty Folder"),
playlist_NodeCreate( p_playlist, _("Empty Folder"),
p_playlist->p_local_category, 0, NULL );
}
PL_UNLOCK;
free( psz_name );
......
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