Commit 79f0eec7 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: profile_editor: fix inverted test

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