[vlc-commits] Qt: unbreak the update of metadata

Jean-Baptiste Kempf git at videolan.org
Fri Jan 25 16:47:04 CET 2013


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Jan 25 16:46:16 2013 +0100| [28085c7628a880a6584b89709c2d8c3f2a51b748] | committer: Jean-Baptiste Kempf

Qt: unbreak the update of metadata

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=28085c7628a880a6584b89709c2d8c3f2a51b748
---

 modules/gui/qt4/components/info_panels.cpp |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/gui/qt4/components/info_panels.cpp b/modules/gui/qt4/components/info_panels.cpp
index 5045ef1..0b051d4 100644
--- a/modules/gui/qt4/components/info_panels.cpp
+++ b/modules/gui/qt4/components/info_panels.cpp
@@ -164,7 +164,7 @@ MetaPanel::MetaPanel( QWidget *parent,
     CONNECT( tracknumber_text, textEdited( QString ), this, enterEditMode() );
 
     CONNECT( date_text, textEdited( QString ), this, enterEditMode() );
-    CONNECT( THEMIM->getIM(), artChanged( QString ), this, enterEditMode() );
+//    CONNECT( THEMIM->getIM(), artChanged( QString ), this, enterEditMode() );
 /*    CONNECT( rating_text, valueChanged( QString ), this, enterEditMode( QString ) );*/
 
     /* We are not yet in Edit Mode */
@@ -184,7 +184,7 @@ void MetaPanel::update( input_item_t *p_item )
 
     /* Don't update if you are in edit mode */
     if( b_inEditMode ) return;
-    else p_input = p_item;
+    p_input = p_item;
 
     char *psz_meta;
 #define UPDATE_META( meta, widget ) {                                   \



More information about the vlc-commits mailing list