[vlc-devel] [PATCH] Fixed cover art operations not making "Save Metadata" button visible
Abel Tesfaye
abeltesfaye45 at gmail.com
Tue Apr 2 14:52:45 CEST 2019
Fixed a bug located here https://trac.videolan.org/vlc/ticket/22107
The following is the description of the bug:
The "Save Metadata" button is not visible when cover art is changed using the "Add cover art from file" right-click menu.
---
modules/gui/qt/components/info_panels.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/gui/qt/components/info_panels.cpp b/modules/gui/qt/components/info_panels.cpp
index 89182c5..d446e1a 100644
--- a/modules/gui/qt/components/info_panels.cpp
+++ b/modules/gui/qt/components/info_panels.cpp
@@ -172,7 +172,7 @@ MetaPanel::MetaPanel( QWidget *parent,
CONNECT( seqtot_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() );
/* We are not yet in Edit Mode */
b_inEditMode = false;
--
2.7.4
More information about the vlc-devel
mailing list