Commit 55878a08 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

VLM: fix export

Close #4495
parent 9c02536b
......@@ -391,7 +391,10 @@ void VLMDialog::selectOutput()
{
SoutDialog *s = new SoutDialog( this, p_intf );
if( s->exec() == QDialog::Accepted )
ui.outputLedit->setText( s->getMrl() );
{
int i = s->getMrl().indexOf( " " );
ui.outputLedit->setText( s->getMrl().left( i ) );
}
}
/* Object Modification */
......
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