[vlc-commits] Qt: fix inverted option for Bluray Menus
Jean-Baptiste Kempf
git at videolan.org
Mon Mar 14 08:17:46 CET 2016
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Mar 14 08:17:19 2016 +0100| [27863ad4ed756d3afb0353a7b507e29e7d0844e9] | committer: Jean-Baptiste Kempf
Qt: fix inverted option for Bluray Menus
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=27863ad4ed756d3afb0353a7b507e29e7d0844e9
---
modules/gui/qt/components/open_panels.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/gui/qt/components/open_panels.cpp b/modules/gui/qt/components/open_panels.cpp
index 256fb63..9f05548 100644
--- a/modules/gui/qt/components/open_panels.cpp
+++ b/modules/gui/qt/components/open_panels.cpp
@@ -615,7 +615,7 @@ void DiscOpenPanel::updateMRL()
}
else if ( ui.bdRadioButton->isChecked() )
{
- if ( ui.dvdsimple->isChecked() != true )
+ if ( ui.dvdsimple->isChecked() )
opts += " :no-bluray-menu";
}
emit mrlUpdated( fileList, opts );
More information about the vlc-commits
mailing list