Skip to content

Commit

Permalink
Set Subtitle in Change Recording Metadata Search
Browse files Browse the repository at this point in the history
After a metadata Search within the 'Edit Recording
Metadata' screen, the subtitle value is mistakenly
written to the Description field. Then that value
is usually immediately overwritten by the real
description value.

This code change fixes the problem by properly
writing to the Subtitle field.

Resolves #667

(cherry picked from commit fdf5b09)
  • Loading branch information
SteveErl authored and rcrdnalor committed Nov 29, 2022
1 parent f358f30 commit 44f88ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythfrontend/playbackbox.cpp
Expand Up @@ -5472,7 +5472,7 @@ void RecMetadataEdit::QueryComplete(MetadataLookup *lookup)
m_episodeSpin->SetValue(lookup->GetEpisode());
if (!lookup->GetSubtitle().isEmpty())
{
m_descriptionEdit->SetText(lookup->GetSubtitle());
m_subtitleEdit->SetText(lookup->GetSubtitle());
}
if (!lookup->GetDescription().isEmpty())
{
Expand Down

0 comments on commit 44f88ed

Please sign in to comment.