Commit b2c73bd4 authored by Clément Stenac's avatar Clément Stenac

Don't prepend :sout= to sout string in VLM dialog (Refs:#530)

parent fdbec554
......@@ -502,7 +502,9 @@ void VLMAddStreamPanel::OnChooseOutput( wxCommandEvent &event )
if( p_sout_dialog && p_sout_dialog->ShowModal() == wxID_OK )
{
output_text->SetValue( (p_sout_dialog->GetOptions())[0] );
wxString sout = (p_sout_dialog->GetOptions())[0] ;
sout = sout.AfterFirst( '=' );
output_text->SetValue( sout );
}
}
......
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