Skip to content

Commit

Permalink
Show "Input name" field only for analog inputs
Browse files Browse the repository at this point in the history
In mythtv-setup, Input Connections configuration, show the
"Input name" selection only for cards with analog inputs.
This field is used to select for example between Composite,
S-Video or Component Video when a card has different inputs.
Note that for digital cards the same database field is used
to store the Delivery System.
  • Loading branch information
kmdewaal committed May 9, 2023
1 parent bdc1fcb commit 8f89faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/videosource.cpp
Expand Up @@ -3206,7 +3206,7 @@ CardInput::CardInput(const QString & cardtype, const QString & device,
ds->setValue(CardUtil::GetDeliverySystemFromDB(_cardid));
addChild(ds);
}
else
else if (CardUtil::IsV4L(cardtype))
{
addChild(m_inputName);
}
Expand Down

0 comments on commit 8f89faa

Please sign in to comment.