]> git.sesse.net Git - vlc/commitdiff
Qt: profile_editor: fix inverted test
authorFrancois Cartegnie <fcvlcdev@free.fr>
Fri, 21 Sep 2012 14:37:33 +0000 (16:37 +0200)
committerFrancois Cartegnie <fcvlcdev@free.fr>
Fri, 21 Sep 2012 14:38:42 +0000 (16:38 +0200)
modules/gui/qt4/components/sout/profile_selector.cpp

index ac5bdbae37ea4b799caedd67bb78815fa2a21aef..82e541521fee7205278b47ce5300281ccb409104 100644 (file)
@@ -545,7 +545,7 @@ void VLCProfileEditor::muxSelected()
     SETYESNOSTATE( capstream, "capstream" );
     SETYESNOSTATE( capchaps, "capchaps" );
     bool b = caps["muxers"].contains( "mux_" + current->property("sout").toString() );
-    if ( b )
+    if ( !b )
         ui.muxerwarning->setText(
                     QString( "<img src=\":/menu/info\"/> %1" )
                     .arg( qtr( "This muxer is not provided directly by VLC: It could be missing." ) )