Commit 7c2fd92a authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: Use # for VCD mrls

parent 5098d74c
...@@ -533,7 +533,7 @@ void DiscOpenPanel::updateMRL() ...@@ -533,7 +533,7 @@ void DiscOpenPanel::updateMRL()
mrl+= QString(":%1").arg( ui.chapterSpin->value() ); mrl+= QString(":%1").arg( ui.chapterSpin->value() );
} }
else if ( ui.vcdRadioButton->isChecked() ) else if ( ui.vcdRadioButton->isChecked() )
mrl += QString("@%1").arg( ui.titleSpin->value() ); mrl += QString("#%1").arg( ui.titleSpin->value() );
} }
emit methodChanged( "disc-caching" ); emit methodChanged( "disc-caching" );
......
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