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

Qt: do not prefix VCD chapter with 'E'

parent f73757dd
......@@ -526,9 +526,8 @@ void DiscOpenPanel::updateMRL()
} else if ( ui.vcdRadioButton->isChecked() ) {
mrl = "vcd://" LOCALHOST + discPath;
if( ui.titleSpin->value() > 0 ) {
mrl += QString("@E%1").arg( ui.titleSpin->value() );
}
if( ui.titleSpin->value() > 0 )
mrl += QString("@%1").arg( ui.titleSpin->value() );
/* CDDA */
} else {
......
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