Commit bffd24e9 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4: fix TTL parameter syntax in streaming wizard

(cherry picked from commit 15b329e8)
parent ba618396
......@@ -280,8 +280,7 @@ void SoutDialog::updateMRL()
if( ui.soutAll->isChecked() ) mrl.append( " :sout-all" );
if( ui.ttl->value() != 1 ) mrl.append( " :ttl=" + ui.ttl->value() );
mrl.append( qfu( " :ttl=" ) + QString::number( ui.ttl->value() ) );
mrl.append( " :sout-keep" );
ui.mrlEdit->setPlainText( mrl );
......
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