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

Timothy B. Terriberry git at videolan.org
Thu Sep 5 15:44:06 CEST 2013


vlc/vlc-2.1 | branch: master | Timothy B. Terriberry <tterribe at xiph.org> | Mon Sep  2 08:56:43 2013 -0700| [cfa21b9515c4c0ac6e5b3802718221e3871cc9cb] | 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>
(cherry picked from commit d55b91790fe22877afdb9955c830cc7db1c23a37)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

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

 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