[vlc-commits] Update the language when saving metadata.

Timothy B. Terriberry git at videolan.org
Mon Sep 2 20:45:07 CEST 2013


vlc | branch: master | Timothy B. Terriberry <tterribe at xiph.org> | Mon Sep  2 08:56:43 2013 -0700| [d55b91790fe22877afdb9955c830cc7db1c23a37] | committer: Jean-Baptiste Kempf

Update the language when saving metadata.

Otherwise it won't get saved to the file.

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

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

 modules/gui/qt4/components/info_panels.cpp |    1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/gui/qt4/components/info_panels.cpp b/modules/gui/qt4/components/info_panels.cpp
index f4104f0..41f018e 100644
--- a/modules/gui/qt4/components/info_panels.cpp
+++ b/modules/gui/qt4/components/info_panels.cpp
@@ -298,6 +298,7 @@ void MetaPanel::saveMeta()
     input_item_SetTrackNum(  p_input, qtu( seqnum_text->text() ) );
     input_item_SetTrackTotal(  p_input, qtu( seqtot_text->text() ) );
     input_item_SetDate(  p_input, qtu( date_text->text() ) );
+    input_item_SetLanguage(  p_input, qtu( language_text->text() ) );
 
     input_item_SetCopyright( p_input, qtu( copyright_text->text() ) );
     input_item_SetPublisher( p_input, qtu( publisher_text->text() ) );



More information about the vlc-commits mailing list