Commit d55b9179 authored by Timothy B. Terriberry's avatar Timothy B. Terriberry Committed by Jean-Baptiste Kempf

Update the language when saving metadata.

Otherwise it won't get saved to the file.
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent a27cd70c
...@@ -298,6 +298,7 @@ void MetaPanel::saveMeta() ...@@ -298,6 +298,7 @@ void MetaPanel::saveMeta()
input_item_SetTrackNum( p_input, qtu( seqnum_text->text() ) ); input_item_SetTrackNum( p_input, qtu( seqnum_text->text() ) );
input_item_SetTrackTotal( p_input, qtu( seqtot_text->text() ) ); input_item_SetTrackTotal( p_input, qtu( seqtot_text->text() ) );
input_item_SetDate( p_input, qtu( date_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_SetCopyright( p_input, qtu( copyright_text->text() ) );
input_item_SetPublisher( p_input, qtu( publisher_text->text() ) ); input_item_SetPublisher( p_input, qtu( publisher_text->text() ) );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment