]> git.sesse.net Git - vlc/commitdiff
Qt: When changing a profile, use it right now.
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 30 Apr 2009 22:11:50 +0000 (00:11 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 30 Apr 2009 22:11:50 +0000 (00:11 +0200)
modules/gui/qt4/components/sout/profile_selector.cpp
modules/gui/qt4/dialogs/convert.cpp

index 69adc118a6d16d4f4e9f05a1f98d0b9c93f659ae..23365b87f4aada4a893db22a9f7452384d3f9806 100644 (file)
@@ -122,6 +122,7 @@ void VLCProfileSelector::editProfile( const QString& qs, const QString& value )
             int i_profile = profileBox->findText( qs );
             profileBox->setItemText( i_profile, editor->name );
             profileBox->setItemData( i_profile, QVariant( editor->transcodeValue() ) );
+            updateOptions( i_profile );
         }
     }
     delete editor;
index 59f0518c8855fa33d46067f5f4807217a4808049..332aa85eade2f2917ff6f854dc89965c824b8d3e 100644 (file)
@@ -140,6 +140,7 @@ void ConvertDialog::close()
             ",dst='" + fileLine->text() + "'}";
     }
 
-    msg_Dbg( p_intf, "Transcode MRL: %s", qtu( mrl ) );
+    msg_Warn( p_intf, "Transcode MRL: %s", qtu( mrl ) );
     accept();
 }
+