Commit b660dd5c authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Fix behaviour of DVDSimple button while not in DVD opening

parent ba714bed
......@@ -299,6 +299,7 @@ void DiscOpenPanel::updateButtons()
ui.chapterLabel->show();
ui.chapterSpin->show();
ui.diskOptionBox_2->show();
ui.dvdsimple->setEnabled( true );
}
else if ( ui.vcdRadioButton->isChecked() )
{
......@@ -311,6 +312,7 @@ void DiscOpenPanel::updateButtons()
ui.chapterLabel->hide();
ui.chapterSpin->hide();
ui.diskOptionBox_2->show();
ui.dvdsimple->setEnabled( false );
}
else /* CDDA */
{
......@@ -323,6 +325,7 @@ void DiscOpenPanel::updateButtons()
ui.chapterLabel->hide();
ui.chapterSpin->hide();
ui.diskOptionBox_2->hide();
ui.dvdsimple->setEnabled( false );
}
updateMRL();
......
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