Commit a0019052 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen Committed by Jean-Baptiste Kempf

qt4: Adding support for bluray menus

Signed-off-by: default avatarHugo Beauzée-Luyssen <beauze.h@gmail.com>
(cherry picked from commit 6a72420a4526146b65f87b778e010b9ce52895a9)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent e5c42ced
......@@ -555,6 +555,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