Skip to content

Commit

Permalink
TV Playback: Make the default video zoom 'Off'.
Browse files Browse the repository at this point in the history
Using auto detect as the default is potentially confusing for new users
as they may not expect that behaviour, it can be triggerred by false
positives and is not consistently applied (e.g. VDPAU).
  • Loading branch information
Mark Kendall committed Jun 27, 2011
1 parent 7aeb4ea commit cb5cfea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/programs/mythfrontend/globalsettings.cpp
Expand Up @@ -1811,12 +1811,12 @@ static HostComboBox *AdjustFill()
{
HostComboBox *gc = new HostComboBox("AdjustFill");
gc->setLabel(QObject::tr("Zoom"));
for (int m = kAdjustFill_Off; m < kAdjustFill_END; ++m)
gc->addSelection(toString((AdjustFillMode)m), QString::number(m));
gc->addSelection(toString(kAdjustFill_AutoDetect_DefaultOff),
QString::number(kAdjustFill_AutoDetect_DefaultOff));
gc->addSelection(toString(kAdjustFill_AutoDetect_DefaultHalf),
QString::number(kAdjustFill_AutoDetect_DefaultHalf));
for (int m = kAdjustFill_Off; m < kAdjustFill_END; ++m)
gc->addSelection(toString((AdjustFillMode)m), QString::number(m));
gc->setHelpText(QObject::tr(
"When enabled, these will apply a predefined "
"zoom to all video playback in MythTV."));
Expand Down

0 comments on commit cb5cfea

Please sign in to comment.