Commit 03c122fb authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - Open Disc: handle dvdsimple

parent f1302d9c
...@@ -225,6 +225,7 @@ DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) : ...@@ -225,6 +225,7 @@ DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
BUTTONACT( ui.dvdRadioButton, updateMRL()); BUTTONACT( ui.dvdRadioButton, updateMRL());
BUTTONACT( ui.vcdRadioButton, updateMRL()); BUTTONACT( ui.vcdRadioButton, updateMRL());
BUTTONACT( ui.audioCDRadioButton, updateMRL()); BUTTONACT( ui.audioCDRadioButton, updateMRL());
BUTTONACT( ui.dvdsimple, updateMRL());
CONNECT( ui.titleSpin, valueChanged(int), this, updateMRL()); CONNECT( ui.titleSpin, valueChanged(int), this, updateMRL());
CONNECT( ui.chapterSpin, valueChanged(int), this, updateMRL()); CONNECT( ui.chapterSpin, valueChanged(int), this, updateMRL());
...@@ -244,7 +245,11 @@ void DiscOpenPanel::updateMRL() ...@@ -244,7 +245,11 @@ void DiscOpenPanel::updateMRL()
QString mrl = ""; QString mrl = "";
/* DVD */ /* DVD */
if( ui.dvdRadioButton->isChecked() ) { if( ui.dvdRadioButton->isChecked() ) {
mrl = "dvd://" + ui.deviceCombo->currentText(); if( !ui.dvdsimple->isChecked() )
mrl = "dvd://";
else
mrl = "dvdsimple://";
mrl += ui.deviceCombo->currentText();
emit methodChanged( "dvdnav-caching" ); emit methodChanged( "dvdnav-caching" );
if ( ui.titleSpin->value() > 0 ) { if ( ui.titleSpin->value() > 0 ) {
......
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