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

* don't add an 'empty folder' if the user hit cancel when asked to enter a name for it

parent a610989c
......@@ -1341,15 +1341,19 @@ NSLog( @"expandable" );
playlist_item_t * p_item;
ret_v = intf_UserStringInput( p_playlist, _("New Node"),
_("Please enter a name for the new node."), &psz_name );
if( psz_name != NULL && psz_name != "" )
p_item = playlist_NodeCreate( p_playlist, psz_name,
p_playlist->p_local_category, 0 );
else
else if(! config_GetInt( p_playlist, "interact" ) )
{
/* in case that the interaction is disabled, just give it a bogus name */
p_item = playlist_NodeCreate( p_playlist, _("Empty Folder"),
p_playlist->p_local_category, 0 );
}
if(! p_item )
msg_Warn( VLCIntf, "node creation failed" );
msg_Warn( VLCIntf, "node creation failed or cancelled by user" );
vlc_object_release( p_playlist );
[ourPool release];
......
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