Commit 6a72420a authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

qt4: Adding support for bluray menus

Signed-off-by: default avatarHugo Beauzée-Luyssen <beauze.h@gmail.com>
parent 93154b67
......@@ -553,6 +553,11 @@ void DiscOpenPanel::updateMRL()
if( ui.titleSpin->value() > 0 )
opts += QString(" :cdda-track=%1").arg( ui.titleSpin->value() );
}
else if ( ui.bdRadioButton->isChecked() )
{
if ( ui.dvdsimple->isChecked() == false )
opts += " :bluray-menu";
}
emit mrlUpdated( fileList, opts );
}
......
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