[vlc-commits] Qt: fix bluray menu checkbox
Jean-Baptiste Kempf
git at videolan.org
Tue Dec 15 00:20:07 CET 2015
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Dec 15 00:19:34 2015 +0100| [1052ee78e3479a5b538aaee8c721f44788293606] | committer: Jean-Baptiste Kempf
Qt: fix bluray menu checkbox
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1052ee78e3479a5b538aaee8c721f44788293606
---
modules/gui/qt4/components/open_panels.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/components/open_panels.cpp b/modules/gui/qt4/components/open_panels.cpp
index 6625a5c..d62c20d 100644
--- a/modules/gui/qt4/components/open_panels.cpp
+++ b/modules/gui/qt4/components/open_panels.cpp
@@ -615,8 +615,8 @@ void DiscOpenPanel::updateMRL()
}
else if ( ui.bdRadioButton->isChecked() )
{
- if ( ui.dvdsimple->isChecked() == false )
- opts += " :bluray-menu";
+ if ( ui.dvdsimple->isChecked() != true )
+ opts += " :no-bluray-menu";
}
emit mrlUpdated( fileList, opts );
}
More information about the vlc-commits
mailing list